Rectangle.h
资源名称:CAD.zip [点击查看]
上传用户:hehe2haha
上传日期:2013-08-16
资源大小:161k
文件大小:1k
源码类别:
CAD
开发平台:
Visual C++
- // Rectangle.h: interface for the CRectangle class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_RECTANGLE_H__C40C0CA6_5996_4A7A_A5A6_81717A5E2C17__INCLUDED_)
- #define AFX_RECTANGLE_H__C40C0CA6_5996_4A7A_A5A6_81717A5E2C17__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "Shape.h"
- class CRectangle : public CShape
- {
- int mPtx; //middle of x-coord
- int mPty; //middle of y-coord
- public:
- CRectangle();
- virtual ~CRectangle();
- BOOL pick(POINT);
- void DrawRect(HDC);
- void Draw(HDC);
- virtual void SaveClassName(ostream &ofstr)
- {
- ofstr<<m_className;
- }
- };
- #endif // !defined(AFX_RECTANGLE_H__C40C0CA6_5996_4A7A_A5A6_81717A5E2C17__INCLUDED_)