趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Event.h
Go to the documentation of this file.
1 #ifndef HRK_EVENT_H
2 #define HRK_EVENT_H
3 
9 namespace hrk
10 {
11  class Event
12  {
13  public:
14  virtual ~Event(void)
15  {
16  }
17 
18  virtual bool is_activated(void) const = 0;
19  virtual void set_activated(bool activate) = 0;
20  };
21 }
22 
23 #endif
Definition: Event.h:11