Changeset 5682 in orxonox.OLD for branches/world_entities/src/util
- Timestamp:
 - Nov 21, 2005, 10:27:33 PM (20 years ago)
 - File:
 - 
          
- 1 edited
 
- 
          branches/world_entities/src/util/object_manager.h (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
branches/world_entities/src/util/object_manager.h
r5629 r5682 8 8 9 9 #include "base_object.h" 10 #include <list> 10 11 11 12 // FORWARD DECLARATION 13 14 15 class ObjectGroupList 16 { 17 18 19 20 }; 21 12 22 13 23 //! A default singleton class. … … 19 29 inline static ObjectManager* getInstance(void) { if (!ObjectManager::singletonRef) ObjectManager::singletonRef = new ObjectManager(); return ObjectManager::singletonRef; }; 20 30 31 32 ObjectGroupList* getGroupList( ); 33 21 34 private: 22 35 ObjectManager(void); 23 36 static ObjectManager* singletonRef; 37 38 std::list<ObjectGroupList> groupList; 39 40 24 41 }; 25 42  
Note: See TracChangeset
          for help on using the changeset viewer.
      


            






