Changeset 9715 in orxonox.OLD for branches/new_class_id/src/lib/lang/new_class_id.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/new_class_id.cc
r9709 r9715 23 23 * this Always points to the ID of the NullClass. 24 24 */ 25 NewClassID::NewClassID()25 ClassID::ClassID() 26 26 { 27 27 NullClass::acquireID(this->_id, this->_name); … … 30 30 /** 31 31 * @brief Acquiring the ID of a objectList. 32 * @param objList The NewObjectList to acquire the ID from.32 * @param objList The ObjectList to acquire the ID from. 33 33 */ 34 NewClassID::NewClassID(const NewObjectListBase* const objList)34 ClassID::ClassID(const ObjectListBase* const objList) 35 35 { 36 36 objList->acquireID(this->_id, this->_name); … … 38 38 39 39 40 NewClassID NullClass::_classID;40 ClassID NullClass::_classID; 41 41 42 42 int NullClass::_nullID;
Note: See TracChangeset
for help on using the changeset viewer.