Changeset 2513 for code/branches/presentation/src
- Timestamp:
- Dec 18, 2008, 11:28:50 AM (16 years ago)
- Location:
- code/branches/presentation/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation/src/core/Iterator.h
r2506 r2513 96 96 inline Iterator(ObjectListElement<O>* element) 97 97 { 98 this->element_ = (element) ? static_cast<ObjectListBaseElement* <(element) : 0;98 this->element_ = (element) ? static_cast<ObjectListBaseElement*>(element) : 0; 99 99 this->list_ = ClassIdentifier<O>::getIdentifier()->getObjects(); 100 100 this->iterator_ = this->list_->registerIterator(this); -
code/branches/presentation/src/orxonox/tools/Timer.h
r2506 r2513 62 62 63 63 #include "OrxonoxPrereqs.h" 64 #include "core/Executor.h" 64 65 #include "core/OrxonoxClass.h" 65 66 #include "gamestates/GSRoot.h" … … 198 199 this->setInterval(interval); 199 200 this->bLoop_ = bLoop; 200 this->executor_ = static_cast<Executor*>(executor);201 this->executor_ = executor; 201 202 this->bActive_ = true; 202 203
Note: See TracChangeset
for help on using the changeset viewer.