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/interface/c/icfile.cpp

    r335 r345  
    2020   // ----------------------- Redéfinition de types ---------------------------- 
    2121    
    22    typedef xios::tree::CFile      * XFilePtr; 
    23    typedef xios::tree::CFileGroup * XFileGroupPtr; 
     22   typedef xios::CFile      * XFilePtr; 
     23   typedef xios::CFileGroup * XFileGroupPtr; 
    2424 
    2525   // ------------------------ Création des handle ----------------------------- 
     
    3030      if (!cstr2string(_id, _id_len, id)) return; 
    3131 
    32       *_ret = xios::CObjectFactory::GetObject<xios::tree::CFile>(id).get(); 
     32      *_ret = xios::CObjectFactory::GetObject<xios::CFile>(id).get(); 
    3333   } 
    3434    
     
    3838      if (!cstr2string(_id, _id_len, id)) return; 
    3939 
    40       *_ret = xios::CObjectFactory::GetObject<xios::tree::CFileGroup>(id).get(); 
     40      *_ret = xios::CObjectFactory::GetObject<xios::CFileGroup>(id).get(); 
    4141   } 
    4242 
     
    4848      if (!cstr2string(_id, _id_len, id)) return; 
    4949 
    50       *_ret = xios::CObjectFactory::HasObject<xios::tree::CFile>(id); 
     50      *_ret = xios::CObjectFactory::HasObject<xios::CFile>(id); 
    5151   } 
    5252 
     
    5656      if (!cstr2string(_id, _id_len, id)) return; 
    5757 
    58       *_ret = xios::CObjectFactory::HasObject<xios::tree::CFileGroup>(id); 
     58      *_ret = xios::CObjectFactory::HasObject<xios::CFileGroup>(id); 
    5959   } 
    6060} // extern "C" 
Note: See TracChangeset for help on using the changeset viewer.