Changeset 10400 for code/branches/core7/src/libraries/core
- Timestamp:
- Apr 26, 2015, 3:22:27 PM (10 years ago)
- Location:
- code/branches/core7/src/libraries/core/class
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/class/Identifier.cc
r10399 r10400 44 44 namespace orxonox 45 45 { 46 bool Identifier::initConfigValues_s = true; 47 46 48 // ############################### 47 49 // ### Identifier ### -
code/branches/core7/src/libraries/core/class/Identifier.h
r10399 r10400 207 207 virtual bool canDynamicCastObjectToIdentifierClass(Identifiable* object) const = 0; 208 208 209 static bool initConfigValues_s; // TODO: this is a hack - remove it as soon as possible 210 209 211 protected: 210 212 virtual void createSuperFunctionCaller() const = 0; … … 330 332 IdentifierManager::getInstance().createdObject(object); 331 333 332 this->setConfigValues(object, object); 334 if (Identifier::initConfigValues_s) 335 this->setConfigValues(object, object); 336 333 337 return true; 334 338 }
Note: See TracChangeset
for help on using the changeset viewer.