CntrItem.cpp
资源名称:ISQL_src.zip [点击查看]
上传用户:jsxglz
上传日期:2007-01-03
资源大小:117k
文件大小:1k
源码类别:
SQL Server
开发平台:
Visual C++
- // CntrItem.cpp : implementation of the CInteractiveSQLCntrItem class
- //
- #include "stdafx.h"
- #include "InteractiveSQL.h"
- #include "InteractiveSQLDoc.h"
- #include "SQLView.h"
- #include "CntrItem.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CInteractiveSQLCntrItem implementation
- IMPLEMENT_SERIAL(CInteractiveSQLCntrItem, CRichEditCntrItem, 0)
- CInteractiveSQLCntrItem::CInteractiveSQLCntrItem(REOBJECT* preo, CInteractiveSQLDoc* pContainer)
- : CRichEditCntrItem(preo, pContainer)
- {
- // TODO: add one-time construction code here
- }
- CInteractiveSQLCntrItem::~CInteractiveSQLCntrItem()
- {
- // TODO: add cleanup code here
- }
- /////////////////////////////////////////////////////////////////////////////
- // CInteractiveSQLCntrItem diagnostics
- #ifdef _DEBUG
- void CInteractiveSQLCntrItem::AssertValid() const
- {
- CRichEditCntrItem::AssertValid();
- }
- void CInteractiveSQLCntrItem::Dump(CDumpContext& dc) const
- {
- CRichEditCntrItem::Dump(dc);
- }
- #endif
- /////////////////////////////////////////////////////////////////////////////