📄 person.h
字号:
#if !defined(AFX_PERSON_H__CD0ACC21_86E8_11D5_BC12_0000B48B6240__INCLUDED_)
#define AFX_PERSON_H__CD0ACC21_86E8_11D5_BC12_0000B48B6240__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// Person.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CPerson command target
class CPerson : public CObject
{
DECLARE_SERIAL(CPerson)
public:
UINT Load(void);
CString m_szName ;
UINT m_nAge;
public:
virtual void Serialize(CArchive& ar);
public:
CPerson();
virtual ~CPerson();
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_PERSON_H__CD0ACC21_86E8_11D5_BC12_0000B48B6240__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -