Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef _TimeStamp_H
00019 #define _TimeStamp_H
00020
00021 #include <time.h>
00022
00023
00024
00025
00031 class TimeStamp
00032 {
00033 public:
00035 TimeStamp();
00036
00038 virtual ~TimeStamp() {};
00039
00041 void SetNow();
00042
00044 double operator-(const TimeStamp& EarlierTime) const;
00045
00047
00049 void operator+=(double TimeS);
00050
00052
00054 void operator-=(double TimeS);
00055
00057 bool operator>(const TimeStamp& Time);
00058
00060 bool operator<(const TimeStamp& Time);
00061
00065 void getTimeStamp(long& lSeconds, long& lNanoSeconds);
00066
00070 void setTimeStamp(const long& lSeconds, const long& lNanoSeconds);
00071
00072
00073 protected:
00074
00076 timespec m_TimeStamp;
00077
00078 private:
00079
00081 static double TimespecToDouble(const ::timespec& LargeInt);
00082
00084 static ::timespec DoubleToTimespec(double TimeS);
00085
00086 };
00087
00088 #endif