Changeset 3646 in orxonox.OLD for orxonox/trunk/src/lib
- Timestamp:
- Mar 23, 2005, 5:43:07 PM (20 years ago)
- Location:
- orxonox/trunk/src/lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/coord/p_node.cc
r3644 r3646 354 354 { 355 355 pNode->remove(); 356 this->children->remove (pNode);356 //this->children->remove (pNode); 357 357 pNode->parent = NULL; 358 358 } -
orxonox/trunk/src/lib/lang/base_object.cc
r3607 r3646 30 30 { 31 31 this->className = NULL; 32 this->finalized = false; 32 33 } 33 34 … … 58 59 return true; 59 60 } 61 62 63 bool BaseObject::isFinalized() 64 { 65 return this->finalized; 66 } 67 68 69 void BaseObject::finalize() 70 { 71 this->finalized = true; 72 } -
orxonox/trunk/src/lib/lang/base_object.h
r3609 r3646 21 21 bool isA (char* className); 22 22 23 bool isFinalized(); 24 void finalize(); 25 23 26 private: 24 27 char* className; 25 28 bool finalized; 26 29 }; 27 30
Note: See TracChangeset
for help on using the changeset viewer.