//----------------------------------------------------------- // Copyright Christian Arnault LAL-Orsay CNRS // arnault@lal.in2p3.fr // See the complete license in cmt_license.txt "http://www.cecill.info". //----------------------------------------------------------- #ifndef __cmt_scope_section_h__ #define __cmt_scope_section_h__ #include "cmt_parser.h" class ScopeSection { public: ScopeSection (); ScopeSection (ScopeType scope); ~ScopeSection (); ScopeType get_scope () const; private: ScopeType m_scope; }; #endif