12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- #ifndef _RAR_TIMEFN_
- #define _RAR_TIMEFN_
- struct RarLocalTime
- {
- uint Year;
- uint Month;
- uint Day;
- uint Hour;
- uint Minute;
- uint Second;
- uint Reminder; // Part of time smaller than 1 second, represented in 100-nanosecond intervals.
- uint wDay;
- uint yDay;
- };
- class RarTime
- {
- private:
- RarLocalTime rlt;
- public:
- RarTime();
- #ifdef _WIN_ALL
- RarTime& operator =(FILETIME &ft);
- void GetWin32(FILETIME *ft);
- #endif
- #if defined(_UNIX) || defined(_EMX)
- RarTime& operator =(time_t ut);
- time_t GetUnix();
- #endif
- bool operator == (RarTime &rt);
- bool operator < (RarTime &rt);
- bool operator <= (RarTime &rt);
- bool operator > (RarTime &rt);
- bool operator >= (RarTime &rt);
- void GetLocal(RarLocalTime *lt) {*lt=rlt;}
- void SetLocal(RarLocalTime *lt) {rlt=*lt;}
- int64 GetRaw();
- void SetRaw(int64 RawTime);
- uint GetDos();
- void SetDos(uint DosTime);
- void GetText(char *DateStr,bool FullYear);
- void SetIsoText(const char *TimeText);
- void SetAgeText(const char *TimeText);
- void SetCurrentTime();
- void Reset() {rlt.Year=0;}
- bool IsSet() {return(rlt.Year!=0);}
- };
- const char *GetMonthName(int Month);
- bool IsLeapYear(int Year);
- #endif
|