Changeset 5206 in orxonox.OLD for trunk/src/lib/shell/shell_buffer.h
- Timestamp:
- Sep 19, 2005, 12:31:56 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/shell/shell_buffer.h
r5177 r5206 12 12 13 13 // FORWARD DECLARATION 14 class Shell; 14 15 template<class T> class tList; 15 16 template<class T> class tIterator; … … 27 28 /** @returns true if this class is instanciated, false otherwise */ 28 29 inline static bool isInstanciated() { return (ShellBuffer::singletonRef == NULL)?false:true; }; 30 31 void registerShell(Shell* shell); 32 void unregisterShell(Shell* shell); 29 33 30 34 // BUFFER // … … 54 58 tIterator<char>* bufferIterator; //!< An iterator for the Shells main buffer. 55 59 60 Shell* shell; //!< the Registered Shell. 56 61 char bufferArray[SHELL_BUFFER_SIZE]; //!< a BUFFER for fast writing 57 62 char keepBufferArray[SHELL_BUFFER_SIZE]; //!< a BUFFER to have multi-non-newLine commands be copied into the shell.
Note: See TracChangeset
for help on using the changeset viewer.