home *** CD-ROM | disk | FTP | other *** search
- // dbengvw.h : interface of the CDbengView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CDbengView : public CView
- {
- protected: // create from serialization only
- CDbengView();
- DECLARE_DYNCREATE(CDbengView)
-
- // Attributes
- public:
- CDbengDoc* GetDocument();
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CDbengView();
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CDbengView)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in dbengvw.cpp
- inline CDbengDoc* CDbengView::GetDocument()
- { return (CDbengDoc*) m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-