Changeset 6257 in orxonox.OLD for branches/network/src/lib/lang
- Timestamp:
- Dec 21, 2005, 11:58:57 PM (19 years ago)
- Location:
- branches/network/src/lib/lang
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/lang/base_object.cc
r6077 r6257 75 75 this->classID |= (long)classID; 76 76 this->className = className; 77 this->realClassID = classID; 77 78 78 79 ClassList::addToClassList(this, classID, className); -
branches/network/src/lib/lang/base_object.h
r6077 r6257 34 34 /** @returns the classID of the corresponding Object */ 35 35 inline int getClassID() const { return this->classID; }; 36 inline int getRealClassID() const { return this->realClassID; }; 36 37 37 38 bool isA (ClassID classID) const; … … 49 50 const char* className; //!< the name of the class 50 51 long classID; //!< this is the id from the class_id.h enumeration 52 long realClassID; //!< classID which can be used with factory 51 53 char* objectName; //!< The name of this object 52 54 };
Note: See TracChangeset
for help on using the changeset viewer.