⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mypoint.h

📁 绘制各种图形的类
💻 H
字号:
// Point.h: interface for the CPoint class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(_POINT_H_)
#define _POINT_H_

#include "AEEComDef.h"

class CPoint  
{
public:
	int16 gety() const;
	int16 getx() const;
	CPoint(int16 x, int16 y);
	CPoint();
	~CPoint();

private:
	int16 m_y;
	int16 m_x;
};

#endif // !defined(_POINT_H_)

⌨️ 快捷键说明

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