Changeset 9667 for code/trunk/src/libraries/core/command/Shell.h
- Timestamp:
- Aug 25, 2013, 9:08:42 PM (12 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core6 merged: 9552-9554,9556-9574,9577-9579,9585-9593,9596-9612,9626-9662
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/command/Shell.h
r8858 r9667 50 50 #include "util/output/BaseWriter.h" 51 51 #include "core/Core.h" 52 #include "core/OrxonoxClass.h"53 52 54 53 namespace orxonox … … 110 109 }; 111 110 112 Shell(const std::string& consoleName , bool bScrollable);111 Shell(const std::string& consoleName = "", bool bScrollable = true); 113 112 ~Shell(); 114 113 … … 200 199 unsigned int historyOffset_; ///< The command history is a circular buffer, this variable defines the current write-offset 201 200 std::vector<std::string> commandHistory_; ///< The history of commands that were entered by the user 202 static unsigned int cacheSize_s; ///< The maximum cache size of the CommandExecutor - this is stored here for better readability of the config file and because CommandExecutor is no OrxonoxClass201 static unsigned int cacheSize_s; ///< The maximum cache size of the CommandExecutor - this is stored here for better readability of the config file and because CommandExecutor is not configurable 203 202 }; 204 203 }
Note: See TracChangeset
for help on using the changeset viewer.