CntrItem.cpp
资源名称:ceditor.rar [点击查看]
上传用户:hgtech
上传日期:2022-06-07
资源大小:4455k
文件大小:1k
源码类别:
词法分析
开发平台:
Visual C++
- // CntrItem.cpp : implementation of the CC_EditorCntrItem class
- //
- #include "stdafx.h"
- #include "C_Editor.h"
- #include "C_EditorDoc.h"
- #include "C_EditorView.h"
- #include "CntrItem.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CC_EditorCntrItem implementation
- IMPLEMENT_SERIAL(CC_EditorCntrItem, CRichEditCntrItem, 0)
- CC_EditorCntrItem::CC_EditorCntrItem(REOBJECT* preo, CC_EditorDoc* pContainer)
- : CRichEditCntrItem(preo, pContainer)
- {
- // TODO: add one-time construction code here
- }
- CC_EditorCntrItem::~CC_EditorCntrItem()
- {
- // TODO: add cleanup code here
- }
- /////////////////////////////////////////////////////////////////////////////
- // CC_EditorCntrItem diagnostics
- #ifdef _DEBUG
- void CC_EditorCntrItem::AssertValid() const
- {
- CRichEditCntrItem::AssertValid();
- }
- void CC_EditorCntrItem::Dump(CDumpContext& dc) const
- {
- CRichEditCntrItem::Dump(dc);
- }
- #endif
- /////////////////////////////////////////////////////////////////////////////