//----------------------------------------------------------- // Copyright Christian Arnault LAL-Orsay CNRS // arnault@lal.in2p3.fr // See the complete license in cmt_license.txt "http://www.cecill.info". //----------------------------------------------------------- #include "cmt_scope_section.h" ScopeSection::ScopeSection () : m_scope (ScopePublic) { } ScopeSection::ScopeSection (ScopeType scope) : m_scope (scope) { } ScopeSection::~ScopeSection () { } ScopeType ScopeSection::get_scope () const { return (m_scope); }