Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/util/event/event_listener.h @ 4363

Last change on this file since 4363 was 4352, checked in by patrick, 19 years ago

orxonox/trunk: reimplemented the key binding function, kept most of the stuff since it seems very helpful

File size: 361 bytes
RevLine 
[4329]1/*!
[4346]2    \file event_listener.h
3    \brief Definition of an event listener base class
[4329]4
5*/
6
[4346]7#ifndef _EVENT_LISTENER_H
8#define _EVENT_LISTENER_H
[4329]9
10#include "base_object.h"
[4352]11#include "event_def.h"
[4329]12
13
[4346]14//! A class for event listener
15class EventListener : public BaseObject {
[4329]16
17 public:
[4346]18  EventListener();
19  virtual ~EventListener();
[4329]20
21
22};
23
[4346]24#endif /* _EVENT_LISTENER_H */
Note: See TracBrowser for help on using the repository browser.