Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5984 in orxonox.OLD for trunk/src/util/loading/factory.h


Ignore:
Timestamp:
Dec 8, 2005, 1:09:44 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk: doxygen in Factory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/util/loading/factory.h

    r5982 r5984  
    5050  static  BaseObject* fabricate(const TiXmlElement* root = NULL);
    5151
    52   bool operator==(ClassID classID) const { return (this->classID == classID); };
     52
     53  bool operator==(ClassID classID) const;
    5354  bool operator==(const char* className) const;
    5455
     
    6970{
    7071 public:
     72 /**
     73  * creates a new type Factory to enable the loading of T
     74  * @param factoryName the Name of the Factory to load.
     75  * @param classID the ID of the Class to be created.
     76  */
    7177  tFactory (const char* factoryName, ClassID classID)
    7278   : Factory(factoryName, classID)
    73   {
    74   }
     79  {  }
    7580
    7681  private:
Note: See TracChangeset for help on using the changeset viewer.