Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Jun 30, 2005, 4:38:33 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: BaseObject now only knows setClassID → standartisation

File:
1 edited

Legend:

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

    r4596 r4742  
    6868void BaseObject::setClassID(long classID, const char* className)
    6969{
    70   this->setClassID(classID);
    71   this->setClassName(className);
    72 }
    73 
    74 
    75 /**
    76    \brief sets the class identifier
    77    \param id a number for the class from class_list.h enumeration
    78 */
    79 void BaseObject::setClassID (long classID)
    80 {
    8170  this->classID |= classID;
    82 }
    83 
    84 
    85 /**
    86    \brief sets the class identifiers
    87    \param className the class name
    88 */
    89 void BaseObject::setClassName(const char* className)
    90 {
    9171  this->className = className;
    9272}
     
    9575  \brief set the name of the Object
    9676 */
    97              void BaseObject::setName (const char* objectName)
     77void BaseObject::setName (const char* objectName)
    9878{
    9979  if (this->objectName)
Note: See TracChangeset for help on using the changeset viewer.