| 
                Last change
                  on this file since 5011 was
                  4942,
                  checked in by bensch, 20 years ago
           | 
        
        
          | 
               
orxonox/trunk: garbage-collection works perfectly. 
also taken out the finalized-tag from BaseObject 
@patrick: i hope, you agree, that it is not used anymore, and i hope you don't mind me having ereased it. 
 
           | 
        
        | 
            File size:
            1.2 KB
           | 
      
      
        
  | Line |   | 
|---|
| 1 | /*! | 
|---|
| 2 |     \file base_object.h | 
|---|
| 3 |   *  Definition of the base object class. | 
|---|
| 4 |  | 
|---|
| 5 |     This is a global handler for all classes. | 
|---|
| 6 | */ | 
|---|
| 7 |  | 
|---|
| 8 |  | 
|---|
| 9 | #ifndef _BASE_OBJECT_H | 
|---|
| 10 | #define _BASE_OBJECT_H | 
|---|
| 11 |  | 
|---|
| 12 | #include "class_id.h" | 
|---|
| 13 | #ifndef NULL | 
|---|
| 14 | #define NULL 0x0        //!< NULL | 
|---|
| 15 | #endif | 
|---|
| 16 |  | 
|---|
| 17 | class TiXmlElement; | 
|---|
| 18 |  | 
|---|
| 19 | //! A class all other classes are derived from | 
|---|
| 20 | class BaseObject { | 
|---|
| 21 |  | 
|---|
| 22 |  public: | 
|---|
| 23 |   BaseObject (const TiXmlElement* root = NULL); | 
|---|
| 24 |   virtual ~BaseObject (); | 
|---|
| 25 |  | 
|---|
| 26 |   void loadParams(const TiXmlElement* root); | 
|---|
| 27 |  | 
|---|
| 28 |   void setName (const char* newName); | 
|---|
| 29 |   /** \brief returns the Name of this Object */ | 
|---|
| 30 |   inline const char* getName ()const { return this->objectName; }; | 
|---|
| 31 |  | 
|---|
| 32 |   /** @returns the className of the corresponding Object */ | 
|---|
| 33 |   inline const char* getClassName() const { return this->className; }; | 
|---|
| 34 |   /** @returns the classID of the corresponding Object */ | 
|---|
| 35 |   inline int getClassID() const { return this->classID; }; | 
|---|
| 36 |  | 
|---|
| 37 |   bool isA (long classID) const; | 
|---|
| 38 |   void whatIs() const; | 
|---|
| 39 |  | 
|---|
| 40 |  protected: | 
|---|
| 41 |   void setClassID(long classID, const char* className); | 
|---|
| 42 |  | 
|---|
| 43 |   private: | 
|---|
| 44 |     const char*        className;        //!< the name of the class | 
|---|
| 45 |     long               classID;          //!< this is the id from the class_id.h enumeration | 
|---|
| 46 |     char*              objectName;       //!< The name of this object | 
|---|
| 47 | }; | 
|---|
| 48 |  | 
|---|
| 49 | #endif /* _BASE_OBJECT_H */ | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.