Changeset 1591 for code/branches/core3/src/core/Identifier.cc
- Timestamp:
- Jun 12, 2008, 2:00:15 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core3/src/core/Identifier.cc
r1583 r1591 39 39 #include "ConsoleCommand.h" 40 40 #include "CommandExecutor.h" 41 #include " MetaObjectList.h"41 #include "Iterator.h" 42 42 #include "ObjectList.h" 43 43 #include "OrxonoxClass.h" … … 197 197 198 198 /** 199 @brief Adds an object of the given type to the ObjectList. 200 @param object The object to add 201 */ 202 void Identifier::addObject(OrxonoxClass* object) 203 { 204 COUT(5) << "*** ClassIdentifier: Added object to " << this->getName() << "-list." << std::endl; 205 object->getMetaList().add(this->objects_, this->objects_->add(object)); 199 @brief Updates the config-values of all existing objects of this class by calling their setConfigValues() function. 200 */ 201 void Identifier::updateConfigValues() const 202 { 203 for (BaseIterator it = this->getObjects()->begin(); it; ++it) 204 (*it)->setConfigValues(); 206 205 } 207 206
Note: See TracChangeset
for help on using the changeset viewer.