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

BREW编程

开发平台:

Visual C++

  1. // Shape.cpp: implementation of the CShape class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "myShape.h"
  5. //////////////////////////////////////////////////////////////////////
  6. // Construction/Destruction
  7. //////////////////////////////////////////////////////////////////////
  8. CShape::CShape()
  9. {
  10. }
  11. CShape::~CShape()
  12. {
  13. }
  14. CShape::CShape(CColor Clr): m_Clr(Clr)
  15. {
  16. }
  17. const CColor* CShape::getClr() const
  18. {
  19. return &m_Clr;
  20. }