00001
00002
00003
00004 #include <wx/timer.h>
00005 #include <wx/event.h>
00006 #include <wx/wx.h>
00007 #include <ctime>
00008
00009 #include "global.h"
00010
00011 #ifndef _TIMER_H_
00012 #define _TIMER_H_
00013
00014 class my_timer : public wxTimer
00015 {
00016 public:
00017 my_timer(wxWindow* parent,int max_time,TIMER id);
00018 void Notify();
00019 int get_time()const;
00020 private:
00021 wxWindow* parent;
00022 time_t start_time;
00023 int max_time;
00024 bool end;
00025 };
00026
00027 #endif // _TIMER_H_