source: CMT/v1r19/source/cmt_scope_section.cxx @ 1

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

Import all tags

File size: 557 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#include "cmt_scope_section.h"
8
9ScopeSection::ScopeSection () : m_scope (ScopePublic)
10{
11}
12
13ScopeSection::ScopeSection (ScopeType scope) : m_scope (scope)
14{
15}
16
17ScopeSection::~ScopeSection ()
18{
19}
20
21ScopeType ScopeSection::get_scope () const
22{
23  return (m_scope);
24}
25
Note: See TracBrowser for help on using the repository browser.