[PR] この広告は3ヶ月以上更新がないため表示されています。
ホームページを更新後24時間以内に表示されなくなります。
00001 #ifndef DEBUG_HH_ 00002 # define DEBUG_HH_ 00003 00004 # include "activity.hh" 00005 00006 namespace tasks 00007 { 00008 class Debug : public Activity 00009 { 00010 public: 00011 Debug(); 00012 ~Debug(); 00013 void start(); 00014 void process(); 00015 void terminate(); 00016 00017 const std::string &get_name() const; 00018 static const char *get_static_name(); 00019 00020 protected: 00021 bool _test; 00022 00023 void require_task(); 00024 }; 00025 } 00026 00027 #endif