Changeset 4836 in orxonox.OLD for orxonox/trunk/src/lib/lang
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (19 years ago)
- Location:
- orxonox/trunk/src/lib/lang
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/lang/base_object.cc
r4815 r4836 27 27 28 28 /** 29 \briefsets the name from a LoadXML-Element30 \param root the element to load from29 * sets the name from a LoadXML-Element 30 * @param root the element to load from 31 31 */ 32 32 BaseObject::BaseObject(const TiXmlElement* root) … … 45 45 46 46 /** 47 \briefstandard deconstructor47 * standard deconstructor 48 48 */ 49 49 BaseObject::~BaseObject () … … 56 56 57 57 /** 58 \briefloads parameters59 \param root the element to load from58 * loads parameters 59 * @param root the element to load from 60 60 */ 61 61 void BaseObject::loadParams(const TiXmlElement* root) … … 67 67 68 68 /** 69 \briefsets the class identifiers70 \param id a number for the class from class_id.h enumeration71 \param className the class name69 * sets the class identifiers 70 * @param id a number for the class from class_id.h enumeration 71 * @param className the class name 72 72 */ 73 73 void BaseObject::setClassID(long classID, const char* className) … … 97 97 98 98 /** 99 \briefchecks if the class is a classID100 \param classID the Identifier to check for101 \returns true if it is, false otherwise99 * checks if the class is a classID 100 * @param classID the Identifier to check for 101 * @returns true if it is, false otherwise 102 102 */ 103 103 bool BaseObject::isA (long classID) const … … 118 118 119 119 /** 120 * @briefdisplays everything this class is120 * displays everything this class is 121 121 */ 122 122 void BaseObject::whatIs() const -
orxonox/trunk/src/lib/lang/base_object.h
r4747 r4836 1 1 /*! 2 2 \file base_object.h 3 \briefDefinition of the base object class.3 * Definition of the base object class. 4 4 5 5 This is a global handler for all classes. … … 30 30 inline const char* getName ()const { return this->objectName; }; 31 31 32 /** \returns the className of the corresponding Object */32 /** @returns the className of the corresponding Object */ 33 33 inline const char* getClassName() const { return this->className; }; 34 /** \returns the classID of the corresponding Object */34 /** @returns the classID of the corresponding Object */ 35 35 inline int getClassID() const { return this->classID; } 36 36 … … 38 38 void whatIs() const; 39 39 40 /** \returns if the object is finalized */40 /** @returns if the object is finalized */ 41 41 inline bool isFinalized() { return this->finalized; } 42 42 -
orxonox/trunk/src/lib/lang/class_list.cc
r4815 r4836 29 29 30 30 /** 31 \briefCreates a new ClassList31 * Creates a new ClassList 32 32 */ 33 33 ClassList::ClassList(const long& classID, const char* className) … … 43 43 44 44 /** 45 \briefstandard deconstructor45 * standard deconstructor 46 46 */ 47 47 ClassList::~ClassList () -
orxonox/trunk/src/lib/lang/class_list.h
r4782 r4836 1 1 /*! 2 2 \file class_list.h 3 \briefDefinition of the Class List, that handles a Class-Specific-Control structure3 * Definition of the Class List, that handles a Class-Specific-Control structure 4 4 5 5 */
Note: See TracChangeset
for help on using the changeset viewer.