source: CMT/v1r18p20041201/source/cmt_scope_section.h @ 1

Last change on this file since 1 was 1, checked in by arnault, 19 years ago

Import all tags

File size: 561 bytes
Line 
1//-----------------------------------------------------------
2// Copyright Christian Arnault LAL-Orsay CNRS
3// arnault@lal.in2p3.fr
4// See the complete license in cmt_license.txt "http://www.cecill.info".
5//-----------------------------------------------------------
6
7#ifndef __cmt_scope_section_h__
8#define __cmt_scope_section_h__
9
10#include "cmt_parser.h"
11
12class ScopeSection
13{
14public:
15  ScopeSection ();
16  ScopeSection (ScopeType scope);
17  ~ScopeSection ();
18
19  ScopeType get_scope () const;
20
21private:
22  ScopeType m_scope;
23};
24
25#endif
Note: See TracBrowser for help on using the repository browser.