Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4746 in orxonox.OLD for orxonox/trunk/src/lib/lang/base_object.h


Ignore:
Timestamp:
Jul 1, 2005, 12:48:48 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: changed (void) → ()

File:
1 edited

Legend:

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

    r4744 r4746  
    2828  void setName (const char* newName);
    2929  /** \brief returns the Name of this Object */
    30   inline const char* getName (void)const { return this->objectName; };
     30  inline const char* getName ()const { return this->objectName; };
    3131
    3232  /** \returns the className of the corresponding Object */
    33   inline const char* getClassName(void) const { return this->className; };
     33  inline const char* getClassName() const { return this->className; };
    3434  /** \returns the classID of the corresponding Object */
    35   inline int getClassID(void) const { return this->classID; }
     35  inline int getClassID() const { return this->classID; }
    3636
    3737  bool isA (ClassID classID) const;
    38   void whatIs(void) const;
     38  void whatIs() const;
    3939
    4040  /** \returns if the object is finalized */
     
    4646
    4747  /** \brief this finalizes an object and makes it ready to be garbage collected */
    48   void finalize(void) { this->finalized = true; };
     48  void finalize() { this->finalized = true; };
    4949
    5050  private:
Note: See TracChangeset for help on using the changeset viewer.