Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

orxonox/trunk: key_mapper.* commented and reviewed

File size: 438 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.h"
12#include "event_def.h"
13
14
15//! A class for event listener
16class EventListener : virtual public BaseObject {
17
18 public:
19  EventListener();
20  virtual ~EventListener();
21
22  virtual void process(const Event &event) = NULL;
23};
24
25#endif /* _EVENT_LISTENER_H */
Note: See TracBrowser for help on using the repository browser.