Changeset 4836 in orxonox.OLD for orxonox/trunk/src/util/object_manager.cc
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/object_manager.cc
r4746 r4836 24 24 25 25 /** 26 \briefstandard constructor26 * standard constructor 27 27 */ 28 28 ObjectManager::ObjectManager () … … 40 40 41 41 /** 42 \briefthe singleton reference to this class42 * the singleton reference to this class 43 43 */ 44 44 ObjectManager* ObjectManager::singletonRef = NULL; 45 45 46 46 /** 47 \briefstandard deconstructor47 * standard deconstructor 48 48 */ 49 49 ObjectManager::~ObjectManager () … … 53 53 54 54 /** 55 \briefadds an element to the list of dead objects56 \param index: The type of object to add57 \param object: pointer to the object at hand55 * adds an element to the list of dead objects 56 * @param index: The type of object to add 57 * @param object: pointer to the object at hand 58 58 */ 59 59 void ObjectManager::addToDeadList(int index, BaseObject* object) … … 66 66 67 67 /** 68 \briefresurects an object69 \param index: the type of resource to load70 \param number: how many of them68 * resurects an object 69 * @param index: the type of resource to load 70 * @param number: how many of them 71 71 72 \todo if it is unable to get an object from the deadList, it should create it72 @todo if it is unable to get an object from the deadList, it should create it 73 73 */ 74 74 BaseObject* ObjectManager::getFromDeadList(int index, int number) … … 90 90 91 91 /** 92 \briefoutputs some simple debug information about the ObjectManage92 * outputs some simple debug information about the ObjectManage 93 93 */ 94 94 void ObjectManager::debug() const
Note: See TracChangeset
for help on using the changeset viewer.