Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8123 in orxonox.OLD for branches/gui/src/lib/shell/shell_buffer.h


Ignore:
Timestamp:
Jun 2, 2006, 6:16:15 PM (19 years ago)
Author:
bensch
Message:

gui: better outputting in the ShellBuffer

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/shell/shell_buffer.h

    r7762 r8123  
    3333
    3434    static bool addBufferLineStatic(const char* line, ...);
    35     void addBufferLine(const char* line, va_list arg);
     35    void addBufferLine(const char* line);
    3636
    3737    /// BUFFER
     
    5656    unsigned int                  maxBufferSize;                         //!< The Size of the buffer
    5757
    58     char                          bufferArray[SHELL_BUFFER_SIZE];     //!< a BUFFER for fast writing
    5958    std::string                   keepBuffer;                         //!< a BUFFER to have multi-non-newLine commands be copied into the shell.
    6059
     
    6261
    6362    // The Beginning of buffer (buffer.front()) is the last added line.
     63    static char                   bufferArray[SHELL_BUFFER_SIZE];     //!< a BUFFER for fast writing
    6464    static std::list<std::string> buffer;                             //!< A list of stored char-arrays(strings) to store the history
    6565  };
Note: See TracChangeset for help on using the changeset viewer.