Changeset 3746 in orxonox.OLD for orxonox/branches/levelloader/src/lib/lang
- Timestamp:
- Apr 7, 2005, 3:54:49 PM (20 years ago)
- Location:
- orxonox/branches/levelloader/src/lib/lang
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/levelloader/src/lib/lang/base_object.cc
r3605 r3746 18 18 19 19 #include "base_object.h" 20 #include "stdincl.h" 20 21 21 22 … … 29 30 { 30 31 this->className = NULL; 32 this->finalized = false; 31 33 } 32 34 … … 57 59 return true; 58 60 } 61 62 /* 63 bool BaseObject::isFinalized() 64 { 65 66 } 67 */ 68 69 void BaseObject::finalize() 70 { 71 this->finalized = true; 72 } -
orxonox/branches/levelloader/src/lib/lang/base_object.h
r3605 r3746 21 21 bool isA (char* className); 22 22 23 inline bool isFinalized() { return this->finalized; } 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.