Changeset 1063 for code/trunk/src/core/Identifier.h
- Timestamp:
- Apr 14, 2008, 6:23:52 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Identifier.h
r1062 r1063 303 303 void setName(const std::string& name); 304 304 /** @brief Returns the list of all existing objects of this class. @return The list */ 305 inline constObjectList<T>* getObjects() const { return this->objects_; }305 inline ObjectList<T>* getObjects() const { return this->objects_; } 306 306 /** @brief Returns a list of all existing objects of this class. @return The list */ 307 inline constObjectList<BaseObject>* getObjectList() const { return (ObjectList<BaseObject>*)this->objects_; }307 inline ObjectList<BaseObject>* getObjectList() const { return (ObjectList<BaseObject>*)this->objects_; } 308 308 309 309 void updateConfigValues() const;
Note: See TracChangeset
for help on using the changeset viewer.