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/data_output.cpp

    r343 r345  
    1515 
    1616      void CDataOutput::writeGrid 
    17          (const boost::shared_ptr<tree::CGrid> grid) 
     17         (const boost::shared_ptr<CGrid> grid) 
    1818      { 
    1919         if (grid->domain_ref.isEmpty()) 
     
    2424         { 
    2525            this->writeGrid 
    26             (CObjectFactory::GetObject<tree::CDomain>(grid->domain_ref.getValue())); 
     26            (CObjectFactory::GetObject<CDomain>(grid->domain_ref.getValue())); 
    2727         } 
    2828         else 
    2929         { 
    3030            this->writeGrid 
    31             (CObjectFactory::GetObject<tree::CDomain>(grid->domain_ref.getValue()), 
    32              CObjectFactory::GetObject<tree::CAxis>(grid->axis_ref.getValue())); 
     31            (CObjectFactory::GetObject<CDomain>(grid->domain_ref.getValue()), 
     32             CObjectFactory::GetObject<CAxis>(grid->axis_ref.getValue())); 
    3333         } 
    3434      } 
     
    3737 
    3838      void CDataOutput::writeFile 
    39          (const boost::shared_ptr<tree::CFile>  file) 
     39         (const boost::shared_ptr<CFile>  file) 
    4040      { 
    4141         this->writeFile_(file); 
     
    5555 
    5656      void CDataOutput::writeGrid 
    57          (const boost::shared_ptr<tree::CDomain> domain, 
    58           const boost::shared_ptr<tree::CAxis> axis) 
     57         (const boost::shared_ptr<CDomain> domain, 
     58          const boost::shared_ptr<CAxis> axis) 
    5959      { 
    6060         this->writeDomain_(domain); 
     
    6565 
    6666      void CDataOutput::writeGrid 
    67          (const boost::shared_ptr<tree::CDomain> domain) 
     67         (const boost::shared_ptr<CDomain> domain) 
    6868      { 
    6969         this->writeDomain_(domain); 
     
    7373 
    7474      void CDataOutput::writeField 
    75          (const boost::shared_ptr<tree::CField> field) 
     75         (const boost::shared_ptr<CField> field) 
    7676      { 
    77          boost::shared_ptr<tree::CContext> context = 
    78          CObjectFactory::GetObject<tree::CContext>(CObjectFactory::GetCurrentContextId()); 
     77         boost::shared_ptr<CContext> context = 
     78         CObjectFactory::GetObject<CContext>(CObjectFactory::GetCurrentContextId()); 
    7979         boost::shared_ptr<CCalendar> calendar = context->getCalendar(); 
    8080          
     
    8686 
    8787      void CDataOutput::writeFieldGrid 
    88          (const boost::shared_ptr<tree::CField> field) 
     88         (const boost::shared_ptr<CField> field) 
    8989      { 
    9090         this->writeGrid(field->getRelGrid()); 
     
    9393      //---------------------------------------------------------------- 
    9494       
    95       void CDataOutput::writeFieldData(const boost::shared_ptr<tree::CField> field) 
     95      void CDataOutput::writeFieldData(const boost::shared_ptr<CField> field) 
    9696      { 
    9797         boost::shared_ptr<CGrid> grid = 
Note: See TracChangeset for help on using the changeset viewer.