Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5069 in orxonox.OLD for orxonox/trunk/src/util/shell.h


Ignore:
Timestamp:
Aug 18, 2005, 9:35:49 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: EventDef is ok now… sorry paede i misunderstud the structure of enum

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/shell.h

    r5068 r5069  
    88
    99#include "element_2d.h"
     10#include "event_listener.h"
    1011
    1112#include <stdio.h>
     
    2930 * @todo implement what is written above :/
    3031 */
    31 class Shell : public Element2D {
     32class Shell : public Element2D, public EventListener {
    3233
    3334  public:
     
    4748    const char* getBufferLine(unsigned int lineNumber);
    4849
    49   // inputLine
     50    // InputLine
    5051    void flushInputLine();
    5152    void addCharacter(char character);
     
    5354    void removeCharacters(unsigned int characterCount = 1);
    5455
     56
     57    // EventListener
     58    virtual void process(const Event &event);
    5559
    5660    // Element2D-functions
     
    7377    char*                  inputLine;
    7478
    75     tList<const char>*     buffer;
     79    tList<char>*           buffer;
    7680
    7781    tList<Text>*           bufferText;             //!< A list of sored bufferLines of the Shell
Note: See TracChangeset for help on using the changeset viewer.