home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / dbeng / dbengvw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-11  |  1.0 KB  |  43 lines

  1. // dbengvw.h : interface of the CDbengView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CDbengView : public CView
  6. {
  7. protected: // create from serialization only
  8.     CDbengView();
  9.     DECLARE_DYNCREATE(CDbengView)
  10.  
  11. // Attributes
  12. public:
  13.     CDbengDoc* GetDocument();
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CDbengView();
  21.     virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  22. #ifdef _DEBUG
  23.     virtual void AssertValid() const;
  24.     virtual void Dump(CDumpContext& dc) const;
  25. #endif
  26.  
  27.  
  28. // Generated message map functions
  29. protected:
  30.     //{{AFX_MSG(CDbengView)
  31.         // NOTE - the ClassWizard will add and remove member functions here.
  32.         //    DO NOT EDIT what you see in these blocks of generated code !
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. #ifndef _DEBUG    // debug version in dbengvw.cpp
  38. inline CDbengDoc* CDbengView::GetDocument()
  39.    { return (CDbengDoc*) m_pDocument; }
  40. #endif
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43.