00001 #ifndef TIMEBOMB_H 00002 #define TIMEBOMB_H 00003 00004 #include <time.h> 00005 00006 class TimeBomb 00007 { 00008 public: 00009 TimeBomb(); 00010 ~TimeBomb(); 00011 00012 int test_time(time_t testtime); 00013 void disable_system(); 00014 }; 00015 00016 00017 00018 00019 #endif
1.4.4