myShape.cpp
资源名称:Shapes.zip [点击查看]
上传用户:wenshuihe
上传日期:2007-01-14
资源大小:10k
文件大小:0k
源码类别:
BREW编程
开发平台:
Visual C++
- // Shape.cpp: implementation of the CShape class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "myShape.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CShape::CShape()
- {
- }
- CShape::~CShape()
- {
- }
- CShape::CShape(CColor Clr): m_Clr(Clr)
- {
- }
- const CColor* CShape::getClr() const
- {
- return &m_Clr;
- }