point.h

来自「学习VC的时候写的」· C头文件 代码 · 共 25 行

H
25
字号
// Point.h: interface for the CPoint class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_POINT_H__40CAB041_FD04_4930_B4D6_2A016650D650__INCLUDED_)
#define AFX_POINT_H__40CAB041_FD04_4930_B4D6_2A016650D650__INCLUDED_

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

class CPoint  
{
private:
	CPoint m_pt[25];
	CPoint m_pt;
public:
	CPoint();
	virtual ~CPoint();
	void ShowPoint(CDC *pDC);

};

#endif // !defined(AFX_POINT_H__40CAB041_FD04_4930_B4D6_2A016650D650__INCLUDED_)

⌨️ 快捷键说明

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