Changeset 9806 in orxonox.OLD for branches/new_class_id/src/lib/lang/base_object.cc
- Timestamp:
- Sep 24, 2006, 10:30:13 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/lang/base_object.cc
r9805 r9806 32 32 this->objectName = objectName; 33 33 this->xmlElem = NULL; 34 35 //ClassList::addToClassList(this, this->classID, "BaseObject");36 34 } 37 35 … … 45 43 for (it = this->_classes.begin(); it != this->_classes.end(); ++it) 46 44 { 47 PRINTF(5)("DELETING OBJECT %s::%s FROM %s\n", this->getClassCName(), getCName(), (*it)._objectList->name().c_str());48 45 (*it)._objectList->unregisterObject((*it)._iterator); 49 46 delete (*it)._iterator; … … 148 145 void BaseObject::listInheritance() const 149 146 { 150 PRINT(0)("Listing inheritance diagram for ....: ");147 PRINT(0)("Listing inheritance diagram for %s::%s: ", getClassCName(), getCName()); 151 148 ClassList::const_iterator it; 152 149 for (it = this->_classes.begin(); it != this->_classes.end(); ++it)
Note: See TracChangeset
for help on using the changeset viewer.