myPoint.cpp
上传用户:wenshuihe
上传日期:2007-01-14
资源大小:10k
文件大小:1k
源码类别:

BREW编程

开发平台:

Visual C++

  1. // Point.cpp: implementation of the CPoint class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "myPoint.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. CPoint::CPoint()
  9. {
  10. }
  11. CPoint::~CPoint()
  12. {
  13. }
  14. CPoint::CPoint(int16 x, int16 y): m_x(x), m_y(y)
  15. {
  16. }
  17. int16 CPoint::getx() const
  18. {
  19. return m_x;
  20. }
  21. int16 CPoint::gety() const
  22. {
  23. return m_y;
  24. }