Changeset 3224 for code/branches/core4/src/core/OrxonoxClass.h
- Timestamp:
- Jun 23, 2009, 8:14:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core4/src/core/OrxonoxClass.h
r3223 r3224 63 63 inline Identifier* getIdentifier() const { return this->identifier_; } 64 64 65 /** @brief Sets the Identifier of the object. Used by the RegisterObject-macro. */66 inline void setIdentifier(Identifier* identifier) { this->identifier_ = identifier; }67 68 /** @brief Returns the list of all parents of the object. @return The list */69 inline std::set<const Identifier*>* getParents() const { return this->parents_; }70 71 /** @brief Creates the parents-list. */72 inline void createParents() { this->parents_ = new std::set<const Identifier*>(); }73 74 /** @brief Returns the MetaObjectList of the object, containing a link to all ObjectLists and ObjectListElements the object is registered in. @return The list */75 inline MetaObjectList& getMetaList() { return (*this->metaList_); }76 77 78 65 bool isA(const Identifier* identifier); 79 66 bool isExactlyA(const Identifier* identifier);
Note: See TracChangeset
for help on using the changeset viewer.