Changeset 5867 for code/branches/core5/src/orxonox/overlays
- Timestamp:
- Oct 4, 2009, 12:02:28 AM (15 years ago)
- Location:
- code/branches/core5/src/orxonox/overlays
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core5/src/orxonox/overlays/InGameConsole.cc
r5855 r5867 48 48 #include "core/ConfigValueIncludes.h" 49 49 #include "core/ConsoleCommand.h" 50 #include "core/ScopedSingletonManager.h" 50 51 #include "core/input/InputManager.h" 51 52 #include "core/input/InputState.h" … … 61 62 62 63 InGameConsole* InGameConsole::singletonPtr_s = 0; 64 ManageScopedSingleton(InGameConsole, ScopeID::Graphics); 63 65 64 66 /** -
code/branches/core5/src/orxonox/overlays/InGameConsole.h
r5850 r5867 36 36 37 37 #include "util/OgreForwardRefs.h" 38 #include "util/S copedSingleton.h"38 #include "util/Singleton.h" 39 39 #include "core/Shell.h" 40 40 #include "core/WindowEventListener.h" … … 42 42 namespace orxonox 43 43 { 44 class _OrxonoxExport InGameConsole : public S copedSingleton<InGameConsole, ScopeID::Graphics>, public ShellListener, public WindowEventListener44 class _OrxonoxExport InGameConsole : public Singleton<InGameConsole>, public ShellListener, public WindowEventListener 45 45 { 46 friend class S copedSingleton<InGameConsole, ScopeID::Graphics>;46 friend class Singleton<InGameConsole>; 47 47 public: // functions 48 48 InGameConsole();
Note: See TracChangeset
for help on using the changeset viewer.