Changeset 5984 in orxonox.OLD for trunk/src/util/loading/factory.h
- Timestamp:
- Dec 8, 2005, 1:09:44 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/util/loading/factory.h
r5982 r5984 50 50 static BaseObject* fabricate(const TiXmlElement* root = NULL); 51 51 52 bool operator==(ClassID classID) const { return (this->classID == classID); }; 52 53 bool operator==(ClassID classID) const; 53 54 bool operator==(const char* className) const; 54 55 … … 69 70 { 70 71 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 */ 71 77 tFactory (const char* factoryName, ClassID classID) 72 78 : Factory(factoryName, classID) 73 { 74 } 79 { } 75 80 76 81 private:
Note: See TracChangeset
for help on using the changeset viewer.