myPoint.h
资源名称:Shapes.zip [点击查看]
上传用户:wenshuihe
上传日期:2007-01-14
资源大小:10k
文件大小:0k
源码类别:
BREW编程
开发平台:
Visual C++
- // 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_)