Changeset 4320 in orxonox.OLD for orxonox/trunk/src/util
- Timestamp:
- May 27, 2005, 1:13:42 AM (20 years ago)
- Location:
- orxonox/trunk/src/util
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/animation/animation_player.cc
r4318 r4320 28 28 AnimationPlayer::AnimationPlayer () 29 29 { 30 this->setClassID(CL_ANIMATION_PLAYER );30 this->setClassID(CL_ANIMATION_PLAYER, "AnimationPlayer"); 31 31 32 32 this->animationList = new tList<Animation>(); -
orxonox/trunk/src/util/garbage_collector.cc
r4318 r4320 38 38 GarbageCollector::GarbageCollector () 39 39 { 40 this->setClassID(CL_GARBAGE_COLLECTOR );40 this->setClassID(CL_GARBAGE_COLLECTOR, "GarbageCollector"); 41 41 this->time = 0; 42 42 this->delay = 1.5f; /* clean up all 5.0 seconds */ -
orxonox/trunk/src/util/object_manager.cc
r4318 r4320 29 29 ObjectManager::ObjectManager () 30 30 { 31 this->setClassID(CL_OBJECT_MANAGER );31 this->setClassID(CL_OBJECT_MANAGER, "ObjectManager"); 32 32 33 33 this->managedObjectList = new tList<BaseObject>*[CL_NUMBER]; -
orxonox/trunk/src/util/resource_manager.cc
r4318 r4320 38 38 ResourceManager::ResourceManager () 39 39 { 40 this->setClassID(CL_RESOURCE_MANAGER );40 this->setClassID(CL_RESOURCE_MANAGER, "ResourceManager"); 41 41 this->dataDir = NULL; 42 42 this->setDataDir("./"); -
orxonox/trunk/src/util/track/track_manager.cc
r4318 r4320 370 370 TrackManager::TrackManager(void) 371 371 { 372 this->setClassID(CL_TRACK_MANAGER); 373 372 this->setClassID(CL_TRACK_MANAGER, "TrackManager"); 374 373 375 374 TrackManager::singletonRef = this; // do this because otherwise the TrackNode cannot get The instance of the TrackManager -
orxonox/trunk/src/util/track/track_node.cc
r4318 r4320 32 32 TrackNode::TrackNode () 33 33 { 34 this->setClassID(CL_TRACK_NODE );34 this->setClassID(CL_TRACK_NODE, "TrackNode"); 35 35 this->setName("TrackNode"); /* absolete but still used... */ 36 36
Note: See TracChangeset
for help on using the changeset viewer.