Changeset 8729 for code/trunk/src/libraries/core/Core.h
- Timestamp:
- Jul 4, 2011, 2:47:44 AM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/libraries/core/Core.h
r8423 r8729 45 45 46 46 #include <string> 47 #include <loki/ScopeGuard.h>48 49 47 #include "util/DestructionHelper.h" 50 48 #include "util/Singleton.h" … … 53 51 namespace orxonox 54 52 { 53 //! Informs about changes in the Development Mode. 54 class DevModeListener : virtual public OrxonoxClass 55 { 56 public: 57 DevModeListener(); 58 virtual ~DevModeListener() {} 59 virtual void devModeChanged(bool value) = 0; 60 }; 61 55 62 /** 56 63 @brief … … 101 108 Core(const Core&); //!< Don't use (undefined symbol) 102 109 110 void devModeChanged(); 103 111 void languageChanged(); 104 112 void initRandomNumberGenerator(); … … 128 136 129 137 bool bGraphicsLoaded_; 130 int softDebugLevelLogFile_;//!< The debug level for the log file (belongs to OutputHandler)138 int debugLevelLogFile_; //!< The debug level for the log file (belongs to OutputHandler) 131 139 std::string language_; //!< The language 132 140 bool bInitRandomNumberGenerator_; //!< If true, srand(time(0)) is called
Note: See TracChangeset
for help on using the changeset viewer.