Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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


Ignore:
Timestamp:
Apr 19, 2006, 3:58:03 AM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: shell in c++-style now

File:
1 edited

Legend:

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

    r7316 r7341  
    1313#include "event_listener.h"
    1414
    15 #include <stdarg.h>
     15#include "shell_input.h"
    1616
    1717#define         SHELL_DEFAULT_FONT              "fonts/dpquake_.ttf"
     
    6060
    6161    void resetValues();
    62     void rebuildText();
    6362
    6463    // BUFFERS
     
    9998
    10099    // HANDLING TEXT INPUT
    101     ShellInput*                 shellInput;             //!< The inputLine of the Shell.
     100    ShellInput                  shellInput;             //!< The inputLine of the Shell.
    102101    // BUFFER
    103102    unsigned int                bufferDisplaySize;      //!< The Size of the Display-buffer, in lines (not in characters).
    104     Text**                      bufferText;             //!< A list of stored bufferTexts for the display of the buffer.
     103    std::list<Text*>            bufferText;             //!< A list of stored bufferTexts for the display of the buffer.
    105104    int                         bufferOffset;           //!< how many lines from the bottom up we display the Buffer.
    106105    std::list<std::string>::const_iterator  bufferIterator;         //!< used to move through and print the Buffer
Note: See TracChangeset for help on using the changeset viewer.