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

绘图程序

开发平台:

Visual C++

  1. // UND_Base.cpp: CUND_Base 
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "UND_Base.h"
  6. CUND_Base::CUND_Base()
  7. {
  8. m_strTitle="???";
  9. }
  10. CUND_Base::CUND_Base(void* pVoid)
  11. {
  12. m_strTitle="???";
  13. }
  14. CUND_Base::~CUND_Base()
  15. {
  16. }
  17. BOOL CUND_Base::OnEditUndo(CCore* pCore)
  18. {
  19. return true;
  20. }
  21. BOOL CUND_Base::OnEditRedo(CCore* pCore)
  22. {
  23. return true;
  24. }