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

绘图程序

开发平台:

Visual C++

  1. // UND_Rotate.h: interface for the CUND_Rotate class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_UND_ROTATE_H__EA39D2C8_DF1C_4AAF_A4CD_8BD360218011__INCLUDED_)
  5. #define AFX_UND_ROTATE_H__EA39D2C8_DF1C_4AAF_A4CD_8BD360218011__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_Rotate : public CUND_Base  
  13. {
  14. public:
  15. CUND_Rotate();
  16. CUND_Rotate(void* pVoid);
  17. virtual ~CUND_Rotate();
  18. virtual void Destroy();
  19. virtual long int GetKind(){ return _UND_OP_rotate; };
  20. virtual BOOL OnEditUndo(CCore *pCore);
  21. virtual BOOL OnEditRedo(CCore *pCore);
  22. virtual BOOL OutputLog(CCore *pCore);
  23. public:
  24. struct SUNDRotate *m_pSRotate;
  25. };
  26. #endif // !defined(AFX_UND_ROTATE_H__EA39D2C8_DF1C_4AAF_A4CD_8BD360218011__INCLUDED_)