myRect.h
资源名称:Shapes.zip [点击查看]
上传用户:wenshuihe
上传日期:2007-01-14
资源大小:10k
文件大小:1k
源码类别:
BREW编程
开发平台:
Visual C++
- // Rect.h: interface for the CRect class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(_RECT_H_)
- #define _RECT_H_
- #include "myPoint.h" // Added by ClassView
- #include "myShape.h"
- class CRect: public CShape
- {
- public:
- void* operator new(size_t sz);
- void operator delete(void *p);
- CRect(CPoint ulc, CPoint lrc, RGBVAL col);
- CRect(int16 x, int16 y, int16 dx, int16 dy, RGBVAL col);
- boolean draw(IGraphics *pg);
- CRect();
- virtual ~CRect();
- private:
- CPoint m_lrc; // lower right corner
- CPoint m_ulc; // upper left corner
- };
- #endif // !defined(_RECT_H_)