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

CAD

开发平台:

Visual C++

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