Ignore:
Timestamp:
07/09/12 11:33:05 (12 years ago)
Author:
ymipsl
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS/trunk/src/object_factory.hpp

    r335 r352  
    2424 
    2525         template <typename U> 
    26             static inline boost::shared_ptr<U> GetObject(const StdString & id); 
     26            static boost::shared_ptr<U> GetObject(const StdString & id); 
    2727 
    2828         template <typename U> 
    29             static inline boost::shared_ptr<U> GetObject(const StdString& context,const StdString & id); 
     29            static boost::shared_ptr<U> GetObject(const StdString& context,const StdString & id); 
    3030 
    3131         template <typename U> 
    32             static inline boost::shared_ptr<U> GetObject(const U * const object); 
     32            static boost::shared_ptr<U> GetObject(const U * const object); 
    3333 
    3434         template <typename U> 
    35             static inline int GetObjectNum(void); 
     35            static int GetObjectNum(void); 
    3636         template <typename U> 
    37             static inline int GetObjectIdNum(void); 
     37            static int GetObjectIdNum(void); 
    3838 
    3939         template <typename U> 
    40             static inline const std::vector<boost::shared_ptr<U> > & 
     40            static const std::vector<boost::shared_ptr<U> > & 
    4141               GetObjectVector(const StdString & context = CObjectFactory::GetCurrentContextId()); 
    4242 
    4343         /// Tests /// 
    4444         template <typename U> 
    45             static inline bool HasObject(const StdString & id); 
     45            static bool HasObject(const StdString & id); 
    4646 
    4747         template <typename U> 
    48             static inline bool HasObject(const StdString& context,const StdString & id); 
     48            static bool HasObject(const StdString& context,const StdString & id); 
    4949 
    5050         /// Instanciateur /// 
    5151         template <typename U> 
    52             static inline boost::shared_ptr<U> CreateObject(const StdString & id = StdString("")); 
     52            static boost::shared_ptr<U> CreateObject(const StdString & id = StdString("")); 
    5353 
    54          template <typename U> static inline StdString GenUId(void) ;  
     54         template <typename U> static StdString GenUId(void) ;  
    5555 
    5656      private : 
     
    6262} // namespace xios 
    6363 
    64 #include "object_factory_impl.hpp" 
     64//#include "object_factory_impl.hpp" 
    6565 
    6666#endif // __XMLIO_CObjectFactory__ 
Note: See TracChangeset for help on using the changeset viewer.