Changeset 5355 in orxonox.OLD for trunk/src/util
- Timestamp:
- Oct 10, 2005, 7:47:42 PM (19 years ago)
- Location:
- trunk/src/util
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/fast_factory.h
r5279 r5355 139 139 tFastFactory<T>* tFastFactory<T>::getFastFactory(ClassID classID, const char* fastFactoryName) 140 140 { 141 printf("cool\n"); 141 142 tFastFactory<T>* tmpFac = NULL; 142 143 if (FastFactory::getFirst() != NULL) -
trunk/src/util/garbage_collector.cc
r5115 r5355 21 21 #include "world_entity.h" 22 22 #include "null_parent.h" 23 #include "fast_factory.h" 23 24 24 25 #include "list.h" -
trunk/src/util/garbage_collector.h
r4979 r5355 8 8 #include "base_object.h" 9 9 10 #include "fast_factory.h" 10 // FORWARD DECLARATION 11 class FastObjectMember; 11 12 12 13 //! this class maintains the garbage collection. -
trunk/src/util/loading/factory.h
r5156 r5355 84 84 tFactory<T>::tFactory(const char* factoryName) : Factory(factoryName) 85 85 { 86 PRINTF( 5)("Class: %s loadable\n", this->getName());86 PRINTF(1)("Class: %s loadable\n", this->getName()); 87 87 } 88 88
Note: See TracChangeset
for help on using the changeset viewer.