Changeset 9371 in orxonox.OLD for branches/proxy/src/lib/util/loading/factory.cc
- Timestamp:
- Jul 20, 2006, 11:08:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/util/loading/factory.cc
r9357 r9371 117 117 if (factory != Factory::factoryList->end()) 118 118 { 119 PRINTF(2)("Create a new Object of type %s\n", (*factory)->get Name());119 PRINTF(2)("Create a new Object of type %s\n", (*factory)->getCName()); 120 120 return (*factory)->fabricateObject(root); 121 121 } … … 145 145 if (factory != Factory::factoryList->end()) 146 146 { 147 PRINTF(4)("Create a new Object of type %s\n", (*factory)->get Name());147 PRINTF(4)("Create a new Object of type %s\n", (*factory)->getCName()); 148 148 return (*factory)->fabricateObject(NULL); 149 149 } … … 173 173 if (factory != Factory::factoryList->end()) 174 174 { 175 PRINTF(4)("Create a new Object of type %s\n", (*factory)->get Name());175 PRINTF(4)("Create a new Object of type %s\n", (*factory)->getCName()); 176 176 return (*factory)->fabricateObject(NULL); 177 177 }
Note: See TracChangeset
for help on using the changeset viewer.