CopyRectangle.cpp
上传用户:hehe2haha
上传日期:2013-08-16
资源大小:161k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // CopyRectangle.cpp: implementation of the CCopyRectangle class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "CopyRectangle.h"
  6. #include "WinApp.h"
  7. #include "Rectangle.h"
  8. extern CWinApp g_theApp;
  9. //////////////////////////////////////////////////////////////////////
  10. // Construction/Destruction
  11. //////////////////////////////////////////////////////////////////////
  12. CCopyRectangle::CCopyRectangle()
  13. {
  14. }
  15. CCopyRectangle::~CCopyRectangle()
  16. {
  17. }
  18. CShape * CCopyRectangle::Copy()
  19. {
  20. CArray<CShape*> *pArrayShape = &(g_theApp.m_DataBase.m_ArrayShape);
  21. CRectangle *pRectangle = new CRectangle;
  22. memcpy(pRectangle,pShape,sizeof(CRectangle));
  23. pShape->isPick      = FALSE;
  24. pRectangle->isPick  = TRUE;
  25. return pRectangle;
  26. }
  27. CCopyRectangle::CCopyRectangle(CShape *Shape)
  28. {
  29. pShape = Shape;
  30. }