Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/action_listener.h @ 4326

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

orxonox/trunk: working on an alternativ flight mode and a new event handlig system at the same time. crazy…

File size: 417 bytes
Line 
1/*!
2    \file proto_class.h
3    \brief Definition of ...
4
5*/
6
7#ifndef _ACTION_LISTENER_H
8#define _ACTION_LISTENER_H
9
10#include "base_object.h"
11
12
13
14//! an abstract class that stands for an action listener
15class ActionListener : public BaseObject {
16
17 public:
18  ActionListener();
19  virtual ~ActionListener();
20
21  void actionPerformed() {}
22
23  virtual void command(Command* cmd) = NULL;
24
25};
26
27#endif /* _ACTION_LISTENER_H */
Note: See TracBrowser for help on using the repository browser.