Changeset 5279 in orxonox.OLD for trunk/src/util
- Timestamp:
- Oct 4, 2005, 9:20:04 PM (19 years ago)
- Location:
- trunk/src/util
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/fast_factory.h
r4980 r5279 83 83 84 84 /** generates a new Object of the Class T */ 85 virtual void fabricate() = NULL;85 virtual void fabricate() = 0; 86 86 87 87 private: -
trunk/src/util/loading/load_param.h
r5226 r5279 307 307 { 308 308 const TiXmlElement* elem = root->FirstChildElement(paramName); 309 if ( likely(elem != NULL))309 if (elem != NULL) 310 310 (*pt2Object.*function)(elem); 311 311 else
Note: See TracChangeset
for help on using the changeset viewer.