Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4836 in orxonox.OLD for orxonox/trunk/src/lib/lang


Ignore:
Timestamp:
Jul 12, 2005, 12:33:16 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: renamed all the \param → @param and so on in Doxygen tags.
Thanks a lot to the kDevelop team. this took since the last commit :)

Location:
orxonox/trunk/src/lib/lang
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/lang/base_object.cc

    r4815 r4836  
    2727
    2828/**
    29    \brief sets the name from a LoadXML-Element
    30    \param root the element to load from
     29 * sets the name from a LoadXML-Element
     30 * @param root the element to load from
    3131*/
    3232BaseObject::BaseObject(const TiXmlElement* root)
     
    4545
    4646/**
    47    \brief standard deconstructor
     47 * standard deconstructor
    4848*/
    4949BaseObject::~BaseObject ()
     
    5656
    5757/**
    58    \brief loads parameters
    59    \param root the element to load from
     58 * loads parameters
     59 * @param root the element to load from
    6060*/
    6161void BaseObject::loadParams(const TiXmlElement* root)
     
    6767
    6868/**
    69    \brief sets the class identifiers
    70    \param id a number for the class from class_id.h enumeration
    71    \param className the class name
     69 * sets the class identifiers
     70 * @param id a number for the class from class_id.h enumeration
     71 * @param className the class name
    7272*/
    7373void BaseObject::setClassID(long classID, const char* className)
     
    9797
    9898/**
    99    \brief checks if the class is a classID
    100    \param classID the Identifier to check for
    101    \returns true if it is, false otherwise
     99 * checks if the class is a classID
     100 * @param classID the Identifier to check for
     101 * @returns true if it is, false otherwise
    102102*/
    103103bool BaseObject::isA (long classID) const
     
    118118
    119119/**
    120  * @brief displays everything this class is
     120 * displays everything this class is
    121121 */
    122122void BaseObject::whatIs() const
  • orxonox/trunk/src/lib/lang/base_object.h

    r4747 r4836  
    11/*!
    22    \file base_object.h
    3     \brief Definition of the base object class.
     3  * Definition of the base object class.
    44
    55    This is a global handler for all classes.
     
    3030  inline const char* getName ()const { return this->objectName; };
    3131
    32   /** \returns the className of the corresponding Object */
     32  /** @returns the className of the corresponding Object */
    3333  inline const char* getClassName() const { return this->className; };
    34   /** \returns the classID of the corresponding Object */
     34  /** @returns the classID of the corresponding Object */
    3535  inline int getClassID() const { return this->classID; }
    3636
     
    3838  void whatIs() const;
    3939
    40   /** \returns if the object is finalized */
     40  /** @returns if the object is finalized */
    4141  inline bool isFinalized() { return this->finalized; }
    4242
  • orxonox/trunk/src/lib/lang/class_list.cc

    r4815 r4836  
    2929
    3030/**
    31    \brief Creates a new ClassList
     31 * Creates a new ClassList
    3232*/
    3333ClassList::ClassList(const long& classID, const char* className)
     
    4343
    4444/**
    45    \brief standard deconstructor
     45 * standard deconstructor
    4646*/
    4747ClassList::~ClassList ()
  • orxonox/trunk/src/lib/lang/class_list.h

    r4782 r4836  
    11/*!
    22    \file class_list.h
    3     \brief Definition of the Class List, that handles a Class-Specific-Control structure
     3  * Definition of the Class List, that handles a Class-Specific-Control structure
    44
    55 */
Note: See TracChangeset for help on using the changeset viewer.