Changeset 6276 in orxonox.OLD for trunk/src/lib/lang
- Timestamp:
- Dec 24, 2005, 2:28:00 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/lang/base_object.cc
r6077 r6276 32 32 BaseObject::BaseObject(const TiXmlElement* root) 33 33 { 34 this->className = NULL;34 this->className = "BaseObject"; 35 35 this->classID = CL_BASE_OBJECT; 36 36 … … 73 73 void BaseObject::setClassID(ClassID classID, const char* className) 74 74 { 75 // printf("%s(0x%.8X)->%s(0x%.8X)\n", this->className, this->classID, className, classID); 76 assert (!(this->classID & classID)); 77 75 78 this->classID |= (long)classID; 76 79 this->className = className;
Note: See TracChangeset
for help on using the changeset viewer.