UND_Move.h
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:1k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // UND_Move.h: interface for the CUND_Move class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_UND_MOVE_H__F1B536AF_254A_4217_BE6F_30AA09B04884__INCLUDED_)
  5. #define AFX_UND_MOVE_H__F1B536AF_254A_4217_BE6F_30AA09B04884__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "Und_Base.h"
  10. #include "Shape.h"
  11. #include "GraphDefines.h"
  12. class CUND_Move : public CUND_Base  
  13. {
  14. public:
  15. CUND_Move();
  16. CUND_Move(void* pVoid);
  17. virtual ~CUND_Move();
  18. virtual void Destroy();
  19. virtual long int GetKind(){ return _UND_Op_create; };
  20. virtual BOOL OnEditUndo(CCore *pCore);
  21. virtual BOOL OnEditRedo(CCore *pCore);
  22. virtual BOOL OutputLog(CCore *pCore);
  23. public:
  24. struct SUNDMove *m_pSMove;
  25. };
  26. #endif // !defined(AFX_UND_MOVE_H__F1B536AF_254A_4217_BE6F_30AA09B04884__INCLUDED_)