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/object_template_impl.hpp

    r335 r345  
    3333   template <class T> 
    3434      CObjectTemplate<T>::CObjectTemplate(void) 
    35          : tree::CAttributeMap() 
     35         : CAttributeMap() 
    3636         , CObject() 
    3737   { /* Ne rien faire de plus */ } 
     
    3939   template <class T> 
    4040      CObjectTemplate<T>::CObjectTemplate(const StdString & id) 
    41          : tree::CAttributeMap() 
     41         : CAttributeMap() 
    4242         , CObject(id) 
    4343   { /* Ne rien faire de plus */ } 
     
    4646      CObjectTemplate<T>::CObjectTemplate 
    4747         (const CObjectTemplate<T> & object, bool withAttrList, bool withId) 
    48          : tree::CAttributeMap() 
     48         : CAttributeMap() 
    4949         , CObject() 
    5050   { 
     
    113113 
    114114   template <class T> 
    115       tree::ENodeType CObjectTemplate<T>::getType(void) const 
     115      ENodeType CObjectTemplate<T>::getType(void) const 
    116116   { 
    117117      return (T::GetType()); 
     
    166166 
    167167   template <class T> 
    168    void CObjectTemplate<T>::sendAttributToServer(tree::CAttribute& attr) 
     168   void CObjectTemplate<T>::sendAttributToServer(CAttribute& attr) 
    169169   { 
    170170     shared_ptr<CContext> context=CObjectFactory::GetObject<CContext>(CObjectFactory::GetCurrentContextId()) ; 
     
    270270     oss<<"extern \"C\""<<iendl ; 
    271271     oss<<"{"<<iendl++ ; 
    272      oss<<"typedef xios::tree::"<<getStrType<T>()<<"*  "<<className<<"_Ptr;"<<iendl; 
     272     oss<<"typedef xios::"<<getStrType<T>()<<"*  "<<className<<"_Ptr;"<<iendl; 
    273273     oss<<iendl ; 
    274274     SuperClassMap::generateCInterface(oss,className) ; 
Note: See TracChangeset for help on using the changeset viewer.