Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 4352 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
Line 
1/*!
2    \file event_listener.h
3    \brief Definition of an event listener base class
4
5*/
6
7#ifndef _EVENT_LISTENER_H
8#define _EVENT_LISTENER_H
9
10#include "base_object.h"
11#include "event_def.h"
12
13
14//! A class for event listener
15class EventListener : public BaseObject {
16
17 public:
18  EventListener();
19  virtual ~EventListener();
20
21
22};
23
24#endif /* _EVENT_LISTENER_H */
Note: See TracBrowser for help on using the repository browser.