Changeset 9725 in orxonox.OLD for branches/new_class_id
- Timestamp:
- Sep 8, 2006, 11:42:52 PM (18 years ago)
- Location:
- branches/new_class_id/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/lang/object_list.cc
r9724 r9725 31 31 : _name(className) 32 32 { 33 printf("ObjectList, Registered %s::%d\n", className.c_str(), id);34 33 if (ObjectListBase::_classesByID == NULL) 35 34 { … … 50 49 _id = id; 51 50 /// Some Output, that will fall out later 52 std::cout << "register new ObjectList " << className << " ID: " << this->_id << std::endl;51 // std::cout << "register new ObjectList " << className << " ID: " << this->_id << std::endl; 53 52 54 53 this->_identity = ClassID(this); … … 86 85 ObjectListBase::classIDMap* ObjectListBase::_classesByID = NULL; 87 86 ObjectListBase::classNameMap* ObjectListBase::_classesByName = NULL; 87 std::list<std::string> ObjectListBase::_classNames; 88 88 89 89 /** -
branches/new_class_id/src/lib/util/loading/factory.cc
r9715 r9725 31 31 : _classID(classID) 32 32 { 33 printf("Factory::create(%s::%d)\n", classID.name().c_str(), classID.id());33 PRINTF(4)("Factory::create(%s::%d)\n", classID.name().c_str(), classID.id()); 34 34 //this->registerObject(this, Factory::_objectList); 35 35 this->setName(classID.name());
Note: See TracChangeset
for help on using the changeset viewer.