Changeset 5774 for code/trunk/src/libraries/core/CoreIncludes.h
- Timestamp:
- Sep 23, 2009, 11:31:02 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/CoreIncludes.h
r5738 r5774 80 80 */ 81 81 #define CreateFactory(ClassName) \ 82 bool bCreated##ClassName##Factory = orxonox::ClassFactory<ClassName>::create(#ClassName, true) 83 84 /** 85 @brief Creates the entry in the Factory for classes which should not be loaded through XML. 86 @param ClassName The name of the class 87 */ 88 #define CreateUnloadableFactory(ClassName) \ 89 bool bCreated##ClassName##Factory = orxonox::ClassFactory<ClassName>::create(#ClassName, false) 82 bool bCreated##ClassName##Factory = orxonox::ClassFactory<ClassName>::create(#ClassName) 90 83 91 84 /**
Note: See TracChangeset
for help on using the changeset viewer.