#ifndef _TMSTAMP_HPP_
#define _TMSTAMP_HPP_

#include <time.h>
#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<tTimes>::ElemPtr tmt);

#endif



syntax highlighted by Code2HTML, v. 0.9.1