#ifndef _TMSTAMP_HPP_ #define _TMSTAMP_HPP_ #include #include "scandir.hpp" class ScanDir; class tTimes { public: time_t _STime; time_t _ETime; tTimes() { _STime = 0; _ETime = 0; }; ~tTimes() { return; }; void Print(void); }; time_t TimeOfBeginOfDay(int Day); int GetLastTime(char *FName); int InTime(IndBiList::ElemPtr tmt); #endif