Changeset 4382 in orxonox.OLD for orxonox/trunk/src/lib/lang
- Timestamp:
- May 29, 2005, 9:04:17 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/lang/base_object.h
r4381 r4382 1 1 /*! 2 \file proto_class.h3 \brief Definition of the proto class template, used quickly start work2 \file base_object.h 3 \brief Definition of the base object class. that is a global handler for all classes. 4 4 */ 5 5 … … 10 10 #include "class_list.h" 11 11 12 //! A class all other classes are derived from 12 13 class BaseObject { 13 14 … … 20 21 void setClassID(int id, const char* className); 21 22 23 /** \returns the className of the corresponding Object */ 22 24 inline const char* getClassName(void) const { return this->className;}; 25 /** \returns the classID of the corresponding Object */ 23 26 inline int getClassID(void) const { return this->id; } 24 27 bool isA (char* className); 25 28 29 /** \returns if the object is finalized */ 26 30 inline bool isFinalized() { return this->finalized; } 27 31 void finalize();
Note: See TracChangeset
for help on using the changeset viewer.