Changeset 9715 in orxonox.OLD for branches/new_class_id/src/lib/lang/base_object.cc
- Timestamp:
- Sep 1, 2006, 8:06:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/lang/base_object.cc
r9691 r9715 21 21 #include "util/loading/load_param.h" 22 22 23 NewObjectListDefinition(BaseObject);23 ObjectListDefinition(BaseObject); 24 24 25 25 /** … … 43 43 BaseObject::~BaseObject () 44 44 { 45 /// Remove from the NewObjectLists45 /// Remove from the ObjectLists 46 46 ClassList::iterator it; 47 47 for (it = this->_classes.begin(); it != this->_classes.end(); ++it) … … 89 89 * @return True if found, false if not. 90 90 */ 91 bool BaseObject::isA(const NewObjectListBase& objectList) const91 bool BaseObject::isA(const ObjectListBase& objectList) const 92 92 { 93 93 ClassList::const_iterator it; … … 104 104 * @return True if found, false if not. 105 105 */ 106 bool BaseObject::isA(const NewClassID& classID) const106 bool BaseObject::isA(const ClassID& classID) const 107 107 { 108 108 ClassList::const_iterator it;
Note: See TracChangeset
for help on using the changeset viewer.