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

CAD

开发平台:

Visual C++

  1. // MoveShape.cpp: implementation of the CMoveShape class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "MoveShape.h"
  6. //////////////////////////////////////////////////////////////////////
  7. // Construction/Destruction
  8. //////////////////////////////////////////////////////////////////////
  9. CMoveShape::CMoveShape()
  10. {
  11. pShape = NULL;
  12. }
  13. CMoveShape::~CMoveShape()
  14. {
  15. }
  16. void CMoveShape::Move(HDC hdc, int xOffset, int yOffset)
  17. {
  18. }
  19. //DEL CMoveShape::CMoveShape(CShape *Shape)
  20. //DEL {
  21. //DEL  pShape = Shape;
  22. //DEL }