myPoint.cpp
资源名称:Shapes.zip [点击查看]
上传用户:wenshuihe
上传日期:2007-01-14
资源大小:10k
文件大小:1k
源码类别:
BREW编程
开发平台:
Visual C++
- // Point.cpp: implementation of the CPoint class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "myPoint.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CPoint::CPoint()
- {
- }
- CPoint::~CPoint()
- {
- }
- CPoint::CPoint(int16 x, int16 y): m_x(x), m_y(y)
- {
- }
- int16 CPoint::getx() const
- {
- return m_x;
- }
- int16 CPoint::gety() const
- {
- return m_y;
- }