Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7761 in orxonox.OLD for trunk/src/lib/shell/shell_buffer.h


Ignore:
Timestamp:
May 22, 2006, 3:14:07 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: ShellBuffer with STD::STRING… hope it works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/shell/shell_buffer.h

    r7747 r7761  
    88#define _SHELL_BUFFER_H
    99
     10#include <string>
    1011#include <list>
    1112#include <stdarg.h>
     
    6162    Shell*                        shell;                              //!< the Registered Shell.
    6263    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.
    6565
    6666    unsigned long                 lineCount;                          //!< how many Lines have been written out so far.
Note: See TracChangeset for help on using the changeset viewer.