📄 person.h
字号:
// Person.h: interface for the CPerson class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PERSON_H__3BE16782_95EB_11D7_8A9A_A972ED2DA47A__INCLUDED_)
#define AFX_PERSON_H__3BE16782_95EB_11D7_8A9A_A972ED2DA47A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
//Holding class for patients data
class CPerson:public CObject
{
DECLARE_SERIAL(CPerson);
public:
CString sEGN;
COleDateTime Birth_Date;
CString sName_1;
CString sName_2;
CString sName_3;
CString Sex;
CString sAddress;
CString sPhone;
void Serialize(CArchive& ar);
CPerson();
virtual ~CPerson();
private:
};
#endif // !defined(AFX_PERSON_H__3BE16782_95EB_11D7_8A9A_A972ED2DA47A__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -