Changeset 11016 for code/trunk/src/libraries/core/module/PluginManager.h
- Timestamp:
- Jan 2, 2016, 4:06:30 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/module/PluginManager.h
r10580 r11016 35 35 #include <string> 36 36 #include "util/Singleton.h" 37 #include "core/config/Configurable.h" 37 38 38 39 namespace orxonox 39 40 { 40 class _CoreExport PluginManager : public Singleton<PluginManager> 41 class _CoreExport PluginManager : public Singleton<PluginManager>, public Configurable 41 42 { 42 43 friend class Singleton<PluginManager>; … … 45 46 PluginManager(); 46 47 ~PluginManager(); 48 49 void setConfigValues(); 47 50 48 51 void findPlugins(); … … 58 61 std::map<std::string, Plugin*> plugins_; 59 62 std::map<std::string, PluginReference*> references_; // references that were created by console command 63 bool bMerelyDeactivatePlugins_; 60 64 61 65 static PluginManager* singletonPtr_s;
Note: See TracChangeset
for help on using the changeset viewer.