Ignore:
Timestamp:
03/30/12 17:45:29 (12 years ago)
Author:
ymipsl
Message:

removed "tree" namespace

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/manager/tree_manager.cpp

    r335 r345  
    77namespace xios 
    88{ 
    9    namespace tree 
    10    { 
    119      /// ////////////////////// Définitions ////////////////////// /// 
    1210 
     
    2321         bool hasctxt = CObjectFactory::HasObject<CContext>(id); 
    2422          
    25          boost::shared_ptr<tree::CContext> context = 
    26                CObjectFactory::CreateObject<tree::CContext>(id); 
     23         boost::shared_ptr<CContext> context = 
     24               CObjectFactory::CreateObject<CContext>(id); 
    2725         if (!hasctxt) CGroupFactory::AddChild(group_context, context); 
    2826 
     
    4644      { 
    4745         StdOStringStream ostrstream; 
    48          tree::CContext::ShowTree(ostrstream); 
     46         CContext::ShowTree(ostrstream); 
    4947         content.assign(CIndentedXml::Indented(ostrstream.str())); 
    5048      } 
     
    5351      { 
    5452         StdOStringStream ostrstream; 
    55          tree::CContext::ShowTree(ostrstream); 
     53         CContext::ShowTree(ostrstream); 
    5654         out << CIndentedXml::Indented(ostrstream.str()); 
    5755      } 
     
    133131         { 
    134132            bool hid = false; 
    135             is.read (reinterpret_cast<char*>(&renum), sizeof(tree::ENodeType)); 
     133            is.read (reinterpret_cast<char*>(&renum), sizeof(ENodeType)); 
    136134            is.read (reinterpret_cast<char*>(&hid), sizeof(bool)); 
    137135             
     
    395393      ///------------------------------------------------------------- 
    396394 
    397    } // namespace tree 
    398395} // namespace xios 
Note: See TracChangeset for help on using the changeset viewer.