Changeset 4746 in orxonox.OLD for orxonox/trunk/src/util/garbage_collector.h
- Timestamp:
- Jul 1, 2005, 12:48:48 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/garbage_collector.h
r4519 r4746 24 24 virtual ~GarbageCollector(); 25 25 /** \returns a Pointer to the only object of this Class */ 26 inline static GarbageCollector* getInstance( void) { if (!singletonRef) singletonRef = new GarbageCollector(); return singletonRef; };26 inline static GarbageCollector* getInstance() { if (!singletonRef) singletonRef = new GarbageCollector(); return singletonRef; }; 27 27 28 28 void setCollectionDelay(float delay);
Note: See TracChangeset
for help on using the changeset viewer.