|
Last change
on this file since 677 was 11, checked in by arnault, 21 years ago |
|
Changing eol-style property
|
-
Property svn:eol-style
set to
native
|
|
File size:
536 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 |
|
|---|
| 12 | class ScopeSection
|
|---|
| 13 | {
|
|---|
| 14 | public:
|
|---|
| 15 | ScopeSection ();
|
|---|
| 16 | ScopeSection (ScopeType scope);
|
|---|
| 17 | ~ScopeSection ();
|
|---|
| 18 |
|
|---|
| 19 | ScopeType get_scope () const;
|
|---|
| 20 |
|
|---|
| 21 | private:
|
|---|
| 22 | ScopeType m_scope;
|
|---|
| 23 | };
|
|---|
| 24 |
|
|---|
| 25 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.