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

BREW编程

开发平台:

Visual C++

  1. // Shape.h: interface for the CShape class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(_SHAPE_H_)
  5. #define _SHAPE_H_
  6. #include "myColor.h" // Added by ClassView
  7. #include "AEEGraphics.h"
  8. #include "AEEShell.h"
  9. #include "AEEStdLib.h"
  10. class CShape  
  11. {
  12. public:
  13. const CColor* getClr() const;
  14. CShape(CColor Clr);
  15. virtual boolean draw(IGraphics *pg) =0;
  16. CShape();
  17. virtual ~CShape() =0;
  18. private:
  19. CColor m_Clr;
  20. };
  21. #endif // !defined(AFX_SHAPE_H__617F9B5E_6214_4A5C_AAAF_734D718C832D__INCLUDED_)