note.h

来自「该项目是为PPC(PocketPc)使用者提供方便的理财事务.如,现金的借贷,债」· C头文件 代码 · 共 35 行

H
35
字号
// Note.h: interface for the CNote class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_NOTE_H__09FFB58F_F397_4EC6_9CC1_03E9EFB848EB__INCLUDED_)
#define AFX_NOTE_H__09FFB58F_F397_4EC6_9CC1_03E9EFB848EB__INCLUDED_

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

class CNote  
{
public:
	CNote();
	virtual ~CNote();
public:
	CString	name;
	CString content;
	CTime	time;
};
class MyTime
{
public:
	MyTime();
	virtual ~MyTime();
public:
	int	iDay;
	int iYear;
	int iMonth;
	int iHour;
	int iMinute;
};
#endif // !defined(AFX_NOTE_H__09FFB58F_F397_4EC6_9CC1_03E9EFB848EB__INCLUDED_)

⌨️ 快捷键说明

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