CopyShape.cpp
上传用户:ggmm7909
上传日期:2008-11-12
资源大小:80k
文件大小:0k
源码类别:

绘图程序

开发平台:

C/C++

  1. // CopyShape.cpp: implementation of the CCopyShape class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "CopyShape.h"
  6. //////////////////////////////////////////////////////////////////////
  7. // Construction/Destruction
  8. //////////////////////////////////////////////////////////////////////
  9. CCopyShape::CCopyShape()
  10. {
  11. pShape = NULL;
  12. }
  13. CCopyShape::~CCopyShape()
  14. {
  15. }
  16. CShape * CCopyShape::Copy()
  17. {
  18. return NULL;
  19. }