Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Jun 2, 2005, 1:55:19 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: baseobject documented

File:
1 edited

Legend:

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

    r4436 r4470  
    6262/**
    6363   \brief sets the class identifiers
    64    \param a number for the class from class_list.h enumeration
    65    \param the class name
     64   \param id a number for the class from class_list.h enumeration
     65   \param className the class name
    6666*/
    6767void BaseObject::setClassID(int id, const char* className)
     
    7474/**
    7575   \brief sets the class identifier
    76    \param a number for the class from class_list.h enumeration
     76   \param id a number for the class from class_list.h enumeration
    7777*/
    7878void BaseObject::setClassID (int id)
     
    8484/**
    8585   \brief sets the class identifiers
    86    \param the class name
     86   \param className the class name
    8787*/
    8888void BaseObject::setClassName(const char* className)
     
    9292
    9393
    94 /**
     94/*
    9595   \brief sets the class identifiers
    9696   \param a number for the class from class_list.h enumeration
    9797   \param the class name
    98 */
     98
    9999bool BaseObject::isA (char* className)
    100100{
     
    103103  return true;
    104104}
    105 
    106 
    107 /*
    108   \brief this finalizes an object and makes it ready to be garbage collected
    109105*/
    110 void BaseObject::finalize()
    111 {
    112   this->finalized = true;
    113 }
    114 
    115106
    116107/**
Note: See TracChangeset for help on using the changeset viewer.