New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
Changeset 3474 for branches/2012/dev_r3406_LOCEAN4_XIOS/NEMOGCM/EXTERNAL/XIOS/src/group_factory.hpp – NEMO

Ignore:
Timestamp:
2012-09-07T12:30:41+02:00 (12 years ago)
Author:
rblod
Message:

Update IOSERVER to revision 357

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2012/dev_r3406_LOCEAN4_XIOS/NEMOGCM/EXTERNAL/XIOS/src/group_factory.hpp

    r3428 r3474  
    2323 
    2424         template <typename U> 
    25             static inline void AddGroup(boost::shared_ptr<U> pgroup, 
     25            static void AddGroup(boost::shared_ptr<U> pgroup, 
    2626                                        boost::shared_ptr<U> cgroup); 
    2727 
    2828         template <typename U> 
    29             static inline void AddChild(boost::shared_ptr<U> group, 
     29            static void AddChild(boost::shared_ptr<U> group, 
    3030                                        boost::shared_ptr<typename U::RelChild> child); 
    3131 
     
    3434 
    3535         template <typename U> 
    36             static inline boost::shared_ptr<U> 
     36            static boost::shared_ptr<U> 
    3737               GetGroup(boost::shared_ptr<U> group, const StdString & id); 
    3838 
    3939         template <typename U> 
    40             static inline boost::shared_ptr<typename U::RelChild> 
     40            static boost::shared_ptr<typename U::RelChild> 
    4141               GetChild(boost::shared_ptr<U> group, const StdString & id); 
    4242 
    4343         template <typename U> 
    44             static inline int GetGroupNum(boost::shared_ptr<U> group); 
     44            static int GetGroupNum(boost::shared_ptr<U> group); 
    4545         template <typename U> 
    46             static inline int GetGroupIdNum(boost::shared_ptr<U> group); 
     46            static int GetGroupIdNum(boost::shared_ptr<U> group); 
    4747         template <typename U> 
    48             static inline int GetChildNum(boost::shared_ptr<U> group); 
     48            static int GetChildNum(boost::shared_ptr<U> group); 
    4949         template <typename U> 
    50             static inline int GetChildIdNum(boost::shared_ptr<U> group); 
     50            static int GetChildIdNum(boost::shared_ptr<U> group); 
    5151 
    5252         /// Tests /// 
    5353         template <typename U> 
    54             static inline bool HasGroup(boost::shared_ptr<U> group, const StdString & id); 
     54            static bool HasGroup(boost::shared_ptr<U> group, const StdString & id); 
    5555 
    5656         template <typename U> 
    57             static inline bool HasChild(boost::shared_ptr<U> group, const StdString & id); 
     57            static bool HasChild(boost::shared_ptr<U> group, const StdString & id); 
    5858 
    5959         /// Instanciateur /// 
    6060         template <typename U> 
    61             static inline boost::shared_ptr<U> 
     61            static boost::shared_ptr<U> 
    6262               CreateGroup(boost::shared_ptr<U> group, const StdString & id = StdString("")); 
    6363 
    6464         template <typename U> 
    65             static inline boost::shared_ptr<typename U::RelChild> 
     65            static boost::shared_ptr<typename U::RelChild> 
    6666               CreateChild(boost::shared_ptr<U> group, const StdString & id = StdString("")); 
    6767 
Note: See TracChangeset for help on using the changeset viewer.