Changeset 4836 in orxonox.OLD for orxonox/trunk/src/util/garbage_collector.h
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/garbage_collector.h
r4746 r4836 1 /*! 1 /*! 2 2 \file garbage_collector.h 3 \briefDefinition of the proto class template, used quickly start work4 \todo Example: this shows how to use simply add a Marker that here has to be done something.3 * Definition of the proto class template, used quickly start work 4 @todo Example: this shows how to use simply add a Marker that here has to be done something. 5 5 6 6 The Protoclass exists, to help you quikly getting the run for how to develop in orxonox. … … 16 16 //! this class maintains the garbage collection. 17 17 /** 18 the class is been ticked by the world.cc and goes through the 18 the class is been ticked by the world.cc and goes through the 19 19 world_entity list to clean out all unused entities. 20 20 */ … … 23 23 public: 24 24 virtual ~GarbageCollector(); 25 /** \returns a Pointer to the only object of this Class */25 /** @returns a Pointer to the only object of this Class */ 26 26 inline static GarbageCollector* getInstance() { if (!singletonRef) singletonRef = new GarbageCollector(); return singletonRef; }; 27 27
Note: See TracChangeset
for help on using the changeset viewer.