CntrItem.cpp
上传用户:jsxglz
上传日期:2007-01-03
资源大小:117k
文件大小:1k
源码类别:

SQL Server

开发平台:

Visual C++

  1. // CntrItem.cpp : implementation of the CInteractiveSQLCntrItem class
  2. //
  3. #include "stdafx.h"
  4. #include "InteractiveSQL.h"
  5. #include "InteractiveSQLDoc.h"
  6. #include "SQLView.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. // CInteractiveSQLCntrItem implementation
  15. IMPLEMENT_SERIAL(CInteractiveSQLCntrItem, CRichEditCntrItem, 0)
  16. CInteractiveSQLCntrItem::CInteractiveSQLCntrItem(REOBJECT* preo, CInteractiveSQLDoc* pContainer)
  17. : CRichEditCntrItem(preo, pContainer)
  18. {
  19. // TODO: add one-time construction code here
  20. }
  21. CInteractiveSQLCntrItem::~CInteractiveSQLCntrItem()
  22. {
  23. // TODO: add cleanup code here
  24. }
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CInteractiveSQLCntrItem diagnostics
  27. #ifdef _DEBUG
  28. void CInteractiveSQLCntrItem::AssertValid() const
  29. {
  30. CRichEditCntrItem::AssertValid();
  31. }
  32. void CInteractiveSQLCntrItem::Dump(CDumpContext& dc) const
  33. {
  34. CRichEditCntrItem::Dump(dc);
  35. }
  36. #endif
  37. /////////////////////////////////////////////////////////////////////////////