📄 time.h
字号:
#ifndef TIME_H
#define TIME_H
class GPSTIME
{
public:
GPSTIME(){};
GPSTIME(GPSTIME& from);
bool operator == (GPSTIME& temp);
double operator - (GPSTIME& temp);
double operator - (const GPSTIME& temp);
GPSTIME operator -(const double dSec);
unsigned long iWeek;
double ldSecond;
};
class ATIME
{
public:
short wYear;
short byMonth;
short byDay;
short byHour;
short byMinute;
double bySecond;
unsigned char byDayOfWeek;
ATIME(){}
~ATIME(){}
ATIME(const ATIME& from);
void ConvertToGpsTime(GPSTIME& GpsTime) ;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -