human.h

来自「这个是我们学校用的VC++教案」· C头文件 代码 · 共 25 行

H
25
字号
// Human.h: interface for the CHuman class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_HUMAN_H__3C8694F6_B512_11D6_888E_BD539CA05B73__INCLUDED_)
#define AFX_HUMAN_H__3C8694F6_B512_11D6_888E_BD539CA05B73__INCLUDED_

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

class CHuman : public CObject  
{
public:
	void AssertValid() const;
	CHuman();
	virtual ~CHuman();
//	DECLARE_DYNAMIC(CHuman)

public:
	int m_year;
};

#endif // !defined(AFX_HUMAN_H__3C8694F6_B512_11D6_888E_BD539CA05B73__INCLUDED_)

⌨️ 快捷键说明

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