Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 29, 2008, 7:36:33 PM (16 years ago)
Author:
nicolasc
Message:

just a test - don't morge this

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gcc43/src/core/OrxonoxClass.h

    r1505 r1634  
    6060
    6161            /** @brief Returns the Identifier of the object. @return The Identifier */
    62             inline Identifier* getIdentifier() const { return this->identifier_; }
     62            Identifier* getIdentifier() const { return this->identifier_; }
    6363
    6464            /** @brief Sets the Identifier of the object. Used by the RegisterObject-macro. */
    65             inline void setIdentifier(Identifier* identifier) { this->identifier_ = identifier; }
     65            void setIdentifier(Identifier* identifier) { this->identifier_ = identifier; }
    6666
    6767            /** @brief Returns the list of all parents of the object. @return The list */
    68             inline std::set<const Identifier*>* getParents() const { return this->parents_; }
     68            std::set<const Identifier*>* getParents() const { return this->parents_; }
    6969
    7070            /** @brief Creates the parents-list. */
    71             inline void createParents() { this->parents_ = new std::set<const Identifier*>(); }
     71            void createParents() { this->parents_ = new std::set<const Identifier*>(); }
    7272
    7373            /** @brief Returns the MetaObjectList of the object, containing a link to all ObjectLists and ObjectListElements the object is registered in. @return The list */
    74             inline MetaObjectList& getMetaList() { return (*this->metaList_); }
     74            MetaObjectList& getMetaList() { return (*this->metaList_); }
    7575
    7676
Note: See TracChangeset for help on using the changeset viewer.