Rectangle.h
上传用户:hehe2haha
上传日期:2013-08-16
资源大小:161k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // Rectangle.h: interface for the CRectangle class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_RECTANGLE_H__C40C0CA6_5996_4A7A_A5A6_81717A5E2C17__INCLUDED_)
  5. #define AFX_RECTANGLE_H__C40C0CA6_5996_4A7A_A5A6_81717A5E2C17__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Shape.h"
  10. class CRectangle : public CShape  
  11. {
  12. int mPtx;         //middle of x-coord
  13. int mPty;         //middle of y-coord
  14. public:
  15. CRectangle();
  16. virtual ~CRectangle();
  17. BOOL pick(POINT);
  18. void DrawRect(HDC);
  19. void Draw(HDC);
  20. virtual void SaveClassName(ostream &ofstr)
  21. {
  22. ofstr<<m_className;
  23. }
  24. };
  25. #endif // !defined(AFX_RECTANGLE_H__C40C0CA6_5996_4A7A_A5A6_81717A5E2C17__INCLUDED_)