Changeset 4746 in orxonox.OLD for orxonox/trunk/src/util/object_manager.h
- Timestamp:
- Jul 1, 2005, 12:48:48 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/object_manager.h
r4744 r4746 44 44 45 45 public: 46 virtual ~ObjectManager( void);46 virtual ~ObjectManager(); 47 47 /** \returns a Pointer to the only object of this Class */ 48 inline static ObjectManager* getInstance( void) { if (!singletonRef) singletonRef = new ObjectManager(); return singletonRef; };48 inline static ObjectManager* getInstance() { if (!singletonRef) singletonRef = new ObjectManager(); return singletonRef; }; 49 49 50 50 void registerClass(ClassID classID); … … 55 55 BaseObject* getFromDeadList(int index, int number = 1); 56 56 57 void debug( void) const;57 void debug() const; 58 58 59 59 private: 60 ObjectManager( void);60 ObjectManager(); 61 61 62 62 private:
Note: See TracChangeset
for help on using the changeset viewer.