Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4321 in orxonox.OLD for orxonox/trunk/src/lib/lang/base_object.cc


Ignore:
Timestamp:
May 27, 2005, 1:18:46 AM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: added doxygen tags for the baseobject class

File:
1 edited

Legend:

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

    r4320 r4321  
    3030{
    3131  this->className = NULL;
     32  this->id = -1;
    3233  this->finalized = false;
    3334}
     
    4243}
    4344
     45
     46/**
     47   \brief sets the class identifiers
     48   \param a number for the class from class_list.h enumeration
     49   \param the class name
     50*/
    4451void BaseObject::setClassID(int id, const char* className)
    4552{
     
    4956
    5057
     58/**
     59   \brief sets the class identifier
     60   \param a number for the class from class_list.h enumeration
     61*/
    5162void BaseObject::setClassID (int id)
    5263{
     
    5465}
    5566
     67
     68/**
     69   \brief sets the class identifiers
     70   \param the class name
     71*/
    5672void BaseObject::setClassName(const char* className)
    5773{
     
    6076
    6177
     78/**
     79   \brief sets the class identifiers
     80   \param a number for the class from class_list.h enumeration
     81   \param the class name
     82*/
    6283bool BaseObject::isA (char* className)
    6384{
     
    6788}
    6889
     90
    6991/*
    70 bool BaseObject::isFinalized()
    71 {
    72  
    73 }
     92  \brief this finalizes an object and makes it ready to be garbage collected
    7493*/
    75 
    7694void BaseObject::finalize()
    7795{
Note: See TracChangeset for help on using the changeset viewer.