00001 //----------------------------------------------------------- 00002 // Copyright Christian Arnault LAL-Orsay CNRS 00003 // arnault@lal.in2p3.fr 00004 // See the complete license in cmt_license.txt "http://www.cecill.info". 00005 //----------------------------------------------------------- 00006 00007 #include "cmt_scope_section.h" 00008 00009 ScopeSection::ScopeSection () : m_scope (ScopePublic) 00010 { 00011 } 00012 00013 ScopeSection::ScopeSection (ScopeType scope) : m_scope (scope) 00014 { 00015 } 00016 00017 ScopeSection::~ScopeSection () 00018 { 00019 } 00020 00021 ScopeType ScopeSection::get_scope () const 00022 { 00023 return (m_scope); 00024 } 00025