00001 00002 // 00003 // CLASS TimeInfo 00004 // Class for time storage and comparison. 00005 // 00007 00008 00009 #ifndef _ALTIME_H_ 00010 #define _ALTIME_H_ 00011 00013 00016 class TimeInfo { 00017 public: 00018 TimeInfo() {} 00019 TimeInfo(int,int); 00020 int msec; 00021 int sec; 00022 int min; 00023 int hour; 00024 int day; 00025 int month; 00026 int year; 00027 bool operator<(const TimeInfo op2) const; 00028 bool operator>(const TimeInfo op2) const; 00029 }; 00030 #endif