Changeset 219 for code/branches/objecthierarchie/src/Factory.h
- Timestamp:
- Nov 19, 2007, 10:10:11 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/objecthierarchie/src/Factory.h
r218 r219 8 8 { 9 9 class Identifier; 10 class OrxonoxClass;10 class BaseObject; 11 11 12 12 class ClassFactory 13 13 { 14 14 public: 15 static OrxonoxClass* fabricate(const std::string& name);15 static BaseObject* fabricate(const std::string& name); 16 16 static void add(const std::string& name, Identifier* identifier); 17 17 … … 21 21 ~ClassFactory() {} 22 22 23 static ClassFactory* pointer_ ;23 static ClassFactory* pointer_s; 24 24 std::map<std::string, Identifier*> identifierMap_; 25 25 };
Note: See TracChangeset
for help on using the changeset viewer.