Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5093 in orxonox.OLD for trunk/src/lib/event/event_handler.h


Ignore:
Timestamp:
Aug 21, 2005, 11:17:50 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: inputLine is working.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/event/event_handler.h

    r5039 r5093  
    2626  void init(IniParser* iniParser);
    2727
    28   void setState(elState state);
     28  /** @param state: to which the event handler shall change */
     29  inline void setState(elState state) { this->state = state; };
     30  /** @returns the current state */
     31  inline elState getState() const { return this->state; };
    2932
    3033  void subscribe(EventListener* el, elState state, int eventType);
Note: See TracChangeset for help on using the changeset viewer.