home *** CD-ROM | disk | FTP | other *** search
- // dbengvw.cpp : implementation of the CDbengView class
- //
-
- #include "stdafx.h"
- #include "dbeng.h"
-
- #include "dbengdoc.h"
- #include "dbengvw.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CDbengView
-
- IMPLEMENT_DYNCREATE(CDbengView, CView)
-
- BEGIN_MESSAGE_MAP(CDbengView, CView)
- //{{AFX_MSG_MAP(CDbengView)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CDbengView construction/destruction
-
- CDbengView::CDbengView()
- {
- // TODO: add construction code here
- }
-
- CDbengView::~CDbengView()
- {
- }
-
- /////////////////////////////////////////////////////////////////////////////
- // CDbengView drawing
-
- void CDbengView::OnDraw(CDC* pDC)
- {
- CDbengDoc* pDoc = GetDocument();
-
- // TODO: add draw code here
- }
-
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CDbengView diagnostics
-
- #ifdef _DEBUG
- void CDbengView::AssertValid() const
- {
- CView::AssertValid();
- }
-
- void CDbengView::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
-
- CDbengDoc* CDbengView::GetDocument() // non-debug version is inline
- {
- ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CDbengDoc)));
- return (CDbengDoc*) m_pDocument;
- }
-
- #endif //_DEBUG
-
- /////////////////////////////////////////////////////////////////////////////
- // CDbengView message handlers
-