Changeset 8669 for code/branches/unity_build/src/libraries/core/command
- Timestamp:
- May 29, 2011, 10:56:57 PM (14 years ago)
- Location:
- code/branches/unity_build/src/libraries/core/command
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/unity_build/src/libraries/core/command/Shell.cc
r8524 r8669 34 34 #include "Shell.h" 35 35 36 #include "util/Math.h" 36 37 #include "util/OutputHandler.h" 37 38 #include "util/StringUtils.h" … … 41 42 #include "core/ConfigValueIncludes.h" 42 43 #include "core/PathConfig.h" 44 #include "core/input/InputBuffer.h" 43 45 #include "CommandExecutor.h" 44 46 #include "ConsoleCommand.h" … … 237 239 } 238 240 241 /// Returns the current position of the cursor in the input buffer. 242 unsigned int Shell::getCursorPosition() const 243 { 244 return this->inputBuffer_->getCursorPosition(); 245 } 246 247 /// Returns the current content of the input buffer (the text which was entered by the user) 248 const std::string& Shell::getInput() const 249 { 250 return this->inputBuffer_->get(); 251 } 252 239 253 /** 240 254 @brief Sends output to the internal output buffer. -
code/branches/unity_build/src/libraries/core/command/Shell.h
r8524 r8669 51 51 #include "core/Core.h" 52 52 #include "core/OrxonoxClass.h" 53 #include "core/input/InputBuffer.h"54 53 55 54 namespace orxonox … … 120 119 121 120 void setCursorPosition(unsigned int cursor); 122 /// Returns the current position of the cursor in the input buffer. 123 inline unsigned int getCursorPosition() const 124 { return this->inputBuffer_->getCursorPosition(); } 125 126 /// Returns the current content of the input buffer (the text which was entered by the user) 127 inline const std::string& getInput() const 128 { return this->inputBuffer_->get(); } 121 unsigned int getCursorPosition() const; 122 123 const std::string& getInput() const; 129 124 130 125 typedef std::list<std::pair<std::string, LineType> > LineList;
Note: See TracChangeset
for help on using the changeset viewer.