趣味で作ってるロボット用ソフトウェア
 All Classes Files Functions Enumerations Enumerator Friends Pages
Events.h
Go to the documentation of this file.
1 #ifndef HRK_EVENTS_H
2 #define HRK_EVENTS_H
3 
9 #include <memory>
10 #include <SDL.h>
11 #include "Event.h"
12 
13 
14 namespace hrk
15 {
16  class Events : public Event
17  {
18  public:
19  Events(void);
20  ~Events(void);
21 
22  void add(Event* event);
23 
24  bool is_activated(void) const;
25  void set_activated(bool activate);
26 
27  private:
28  Events(const Events& rhs);
29  Events& operator = (const Events& rhs);
30 
31  struct pImpl;
32  std::auto_ptr<pImpl> pimpl;
33  };
34 }
35 
36 #endif
Definition: Events.h:16
イベントの管理
Definition: Event.h:11