Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/coord/pilot_node.h @ 4418

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

orxonox/trunk: further work on debug level

File size: 452 bytes
Line 
1/*!
2    \file helper_parent.h
3    \brief this is a parent class, that isn't visible in the real world itself
4*/
5
6
7#ifndef _PILOT_NODE_H
8#define _PILOT_NODE_H
9
10#include "comincl.h"
11#include "p_node.h"
12#include "event_listener.h"
13
14class Event;
15
16class PilotNode : public PNode, public EventListener {
17
18 public:
19  PilotNode ();
20  virtual ~PilotNode ();
21 
22  void command(Command* cmd);
23
24  void process(const Event &event);
25
26};
27
28#endif /* _PILOT_NODE_H */
Note: See TracBrowser for help on using the repository browser.