Changeset 4836 in orxonox.OLD for orxonox/trunk/src/lib/lang/base_object.cc
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (20 years ago)
- File:
-
- 1 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
Note: See TracChangeset
for help on using the changeset viewer.