?? mypoint.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 + -