CopyShape.cpp
资源名称:CAD.zip [点击查看]
上传用户:hehe2haha
上传日期:2013-08-16
资源大小:161k
文件大小:0k
源码类别:
CAD
开发平台:
Visual C++
- // CopyShape.cpp: implementation of the CCopyShape class.
- //
- //////////////////////////////////////////////////////////////////////
- #include "stdafx.h"
- #include "CopyShape.h"
- //////////////////////////////////////////////////////////////////////
- // Construction/Destruction
- //////////////////////////////////////////////////////////////////////
- CCopyShape::CCopyShape()
- {
- pShape = NULL;
- }
- CCopyShape::~CCopyShape()
- {
- }
- CShape * CCopyShape::Copy()
- {
- return NULL;
- }