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

BREW编程

开发平台:

Visual C++

  1. // Point.h: interface for the CPoint class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(_POINT_H_)
  5. #define _POINT_H_
  6. #include "AEEComDef.h"
  7. class CPoint  
  8. {
  9. public:
  10. int16 gety() const;
  11. int16 getx() const;
  12. CPoint(int16 x, int16 y);
  13. CPoint();
  14. ~CPoint();
  15. private:
  16. int16 m_y;
  17. int16 m_x;
  18. };
  19. #endif // !defined(_POINT_H_)