Changeset 9577
- Timestamp:
- Mar 25, 2013, 10:20:21 PM (12 years ago)
- Location:
- code/branches/core6/src/libraries/core
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core6/src/libraries/core/CorePrereqs.h
r9572 r9577 140 140 class ConfigFileManager; 141 141 class ConfigFileSection; 142 class Configurable; 142 143 class ConfigValueContainer; 143 144 class Context; -
code/branches/core6/src/libraries/core/class/CMakeLists.txt
r9565 r9577 3 3 Identifier.cc 4 4 IdentifierManager.cc 5 OrxonoxClass.cc6 5 ) -
code/branches/core6/src/libraries/core/class/OrxonoxClass.h
r9572 r9577 43 43 #include "core/CorePrereqs.h" 44 44 45 #include "core/ object/Listable.h"45 #include "core/config/Configurable.h" 46 46 #include "core/object/Destroyable.h" 47 47 … … 49 49 { 50 50 /** 51 @brief Th e classall objects and interfaces of the game-logic (not the engine) are derived from.51 @brief This is the class from which all objects and interfaces of the game-logic (not the engine) are derived from. 52 52 53 53 The BaseObject and Interfaces are derived with @c virtual @c public @c OrxonoxClass from OrxonoxClass. 54 54 */ 55 class _CoreExport OrxonoxClass : virtual public Listable, virtual public Destroyable55 class _CoreExport OrxonoxClass : virtual public Configurable, virtual public Destroyable 56 56 { 57 public:58 OrxonoxClass();59 virtual ~OrxonoxClass();60 61 /// Function to collect the SetConfigValue-macro calls.62 void setConfigValues() {};63 57 }; 64 58 }
Note: See TracChangeset
for help on using the changeset viewer.