CntrItem.cpp
上传用户:hgtech
上传日期:2022-06-07
资源大小:4455k
文件大小:1k
源码类别:

词法分析

开发平台:

Visual C++

  1. // CntrItem.cpp : implementation of the CC_EditorCntrItem class
  2. //
  3. #include "stdafx.h"
  4. #include "C_Editor.h"
  5. #include "C_EditorDoc.h"
  6. #include "C_EditorView.h"
  7. #include "CntrItem.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CC_EditorCntrItem implementation
  15. IMPLEMENT_SERIAL(CC_EditorCntrItem, CRichEditCntrItem, 0)
  16. CC_EditorCntrItem::CC_EditorCntrItem(REOBJECT* preo, CC_EditorDoc* pContainer)
  17. : CRichEditCntrItem(preo, pContainer)
  18. {
  19. // TODO: add one-time construction code here
  20. }
  21. CC_EditorCntrItem::~CC_EditorCntrItem()
  22. {
  23. // TODO: add cleanup code here
  24. }
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CC_EditorCntrItem diagnostics
  27. #ifdef _DEBUG
  28. void CC_EditorCntrItem::AssertValid() const
  29. {
  30. CRichEditCntrItem::AssertValid();
  31. }
  32. void CC_EditorCntrItem::Dump(CDumpContext& dc) const
  33. {
  34. CRichEditCntrItem::Dump(dc);
  35. }
  36. #endif
  37. /////////////////////////////////////////////////////////////////////////////