Changeset 9715 in orxonox.OLD for branches/new_class_id/src/lib/util/loading/factory.cc
- Timestamp:
- Sep 1, 2006, 8:06:39 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/util/loading/factory.cc
r9712 r9715 19 19 //#include "shell_command.h" 20 20 21 NewObjectListDefinition(Factory);21 ObjectListDefinition(Factory); 22 22 23 23 //SHELL_COMMAND(create, Factory, fabricate); … … 28 28 * set everything to zero and define factoryName 29 29 */ 30 Factory::Factory (const NewClassID& classID)30 Factory::Factory (const ClassID& classID) 31 31 : _classID(classID) 32 32 { … … 140 140 * @returns a new Object of Type classID on match, NULL otherwise 141 141 */ 142 BaseObject* Factory::fabricate(const NewClassID& classID)142 BaseObject* Factory::fabricate(const ClassID& classID) 143 143 { 144 144 if (Factory::_factoryList == NULL)
Note: See TracChangeset
for help on using the changeset viewer.