⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 date.h

📁 有计算机图形学、图像处理、dbms、sniffer、中游俄罗斯外挂、othello、遗传算法、舌苔分析等程序。
💻 H
字号:
// Date.h: interface for the Date class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_DATE_H__B6A39C05_332F_4214_9A5C_C2F4768DA0E5__INCLUDED_)
#define AFX_DATE_H__B6A39C05_332F_4214_9A5C_C2F4768DA0E5__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class Date  
{
public:
    WORD tag;
	WORD year;
	WORD month;
	WORD day;
public:
	Date(const Date &date);
	Date();
	Date(WORD y,WORD m,WORD d,WORD t=1);
	Date(CString);
	//Date(const char *);
    bool operator <(const Date &);
	bool operator <=(const Date &);
	bool operator >(const Date &);
	bool operator >=(const Date &);
	bool operator ==(const Date &);
	int operator -(const Date &);
	CString DateToCString();
    virtual ~Date();

};

#endif // !defined(AFX_DATE_H__B6A39C05_332F_4214_9A5C_C2F4768DA0E5__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -