Changeset 9406 in orxonox.OLD for trunk/src/lib/util/loading
- Timestamp:
- Jul 24, 2006, 11:09:47 AM (18 years ago)
- Location:
- trunk/src/lib/util/loading
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/loading/dynamic_loader.cc
r8362 r9406 23 23 24 24 25 using namespace std; 25 26 26 27 27 -
trunk/src/lib/util/loading/factory.cc
r8362 r9406 19 19 //#include "shell_command.h" 20 20 21 using namespace std; 21 22 22 23 23 //SHELL_COMMAND(create, Factory, fabricate); … … 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 } -
trunk/src/lib/util/loading/load_param.cc
r8408 r9406 65 65 ((this->executor->getType() & Executor_NoLoadString) == Executor_NoLoadString))) 66 66 { 67 PRINTF(4)("Loading value '%s' with Parameters '%s' onto: %s::%s\n", this->paramName.c_str(), loadString.c_str(), this->object->getClass Name(), this->object->getName());67 PRINTF(4)("Loading value '%s' with Parameters '%s' onto: %s::%s\n", this->paramName.c_str(), loadString.c_str(), this->object->getClassCName(), this->object->getCName()); 68 68 (*this->executor)(this->object, SubString(loadString, ",", SubString::WhiteSpaces, false, '\\')); 69 69 } … … 164 164 { 165 165 // locating the class 166 this->classDesc = LoadClassDescription::addClass(object->getClass Name());166 this->classDesc = LoadClassDescription::addClass(object->getClassCName()); 167 167 168 168 if ((this->paramDesc = this->classDesc->addParam(paramName)) != NULL) -
trunk/src/lib/util/loading/resource.cc
r8271 r9406 18 18 #include "resource.h" 19 19 20 using namespace std; 20 21 21 22 22 -
trunk/src/lib/util/loading/resource_manager.cc
r8724 r9406 50 50 #include <unistd.h> 51 51 52 using namespace std; 52 53 53 54 54 /**
Note: See TracChangeset
for help on using the changeset viewer.