Changeset 1792 for code/trunk/src/core/Shell.h
- Timestamp:
- Sep 16, 2008, 8:45:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Shell.h
r1755 r1792 30 30 #define _Shell_H__ 31 31 32 #include "CorePrereqs.h" 33 32 34 #include <list> 33 35 #include <vector> 34 35 #include "CorePrereqs.h"36 36 37 37 #include "OrxonoxClass.h" … … 60 60 { 61 61 public: 62 static Shell& getInstance(); 63 static Shell& createShell(); 62 Shell(); 63 virtual ~Shell(); 64 65 static Shell& getInstance() { assert(singletonRef_s); return *singletonRef_s; } 64 66 65 67 static void clearShell(); … … 104 106 105 107 private: 106 Shell();107 108 Shell(const Shell& other); 108 virtual ~Shell();109 109 110 110 void configureInputBuffer(); … … 142 142 unsigned int historyOffset_; 143 143 bool bAddOutputLevel_; 144 145 static Shell* singletonRef_s; 144 146 }; 145 147 }
Note: See TracChangeset
for help on using the changeset viewer.