Changeset 7761 in orxonox.OLD for trunk/src/lib/shell/shell_buffer.h
- Timestamp:
- May 22, 2006, 3:14:07 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_buffer.h
r7747 r7761 8 8 #define _SHELL_BUFFER_H 9 9 10 #include <string> 10 11 #include <list> 11 12 #include <stdarg.h> … … 61 62 Shell* shell; //!< the Registered Shell. 62 63 char bufferArray[SHELL_BUFFER_SIZE]; //!< a BUFFER for fast writing 63 char keepBufferArray[SHELL_BUFFER_SIZE]; //!< a BUFFER to have multi-non-newLine commands be copied into the shell. 64 bool keepBuffer; //!< if the keepbuffer contains unfinished lines. 64 std::string keepBuffer; //!< a BUFFER to have multi-non-newLine commands be copied into the shell. 65 65 66 66 unsigned long lineCount; //!< how many Lines have been written out so far.
Note: See TracChangeset
for help on using the changeset viewer.