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

绘图程序

开发平台:

Visual C++

  1. // UND_Base.h: 
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_UND_BASE_H__78877CD8_CFC3_11D4_B1ED_00300503877F__INCLUDED_)
  5. #define AFX_UND_BASE_H__78877CD8_CFC3_11D4_B1ED_00300503877F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "GraphDefines.h"
  10. class CCore;
  11. class CUND_Base  
  12. {
  13. public:
  14. CUND_Base();
  15. CUND_Base(void* pVoid);
  16. virtual void Destroy(){};
  17. virtual ~CUND_Base();
  18. virtual long int GetKind(){ return _UND_Base; };
  19. virtual BOOL OnEditUndo(CCore *pCore);
  20. virtual BOOL OnEditRedo(CCore *pCore);
  21. virtual BOOL OutputLog(CCore *pCore) { return false; };
  22. virtual BOOL GetMsg(CCore* pCore,CString& str) { return true;};
  23. CString GetTitle(){return m_strTitle;};
  24. void SetTitle(CString str){m_strTitle=str;};
  25. private:
  26. CString m_strTitle;
  27. };
  28. #endif // !defined(AFX_UND_BASE_H__78877CD8_CFC3_11D4_B1ED_00300503877F__INCLUDED_)