mypoint.h

来自「在代码中演示使用C++开发的BREW端方便的程序 非常值得初学者学习.」· C头文件 代码 · 共 25 行

H
25
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?