home *** CD-ROM | disk | FTP | other *** search
/ BURKS 2 / BURKS_AUG97.ISO / BURKS / SOFTWARE / LIBS / ISDKC122.ZIP / ISDKDVW.H (.txt) < prev    next >
C/C++ Source or Header  |  1996-05-17  |  1KB  |  44 lines

  1. // isdkdvw.h : interface of the CIsdkdemoView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CIsdkdemoView : public CView
  6. {
  7. protected: // create from serialization only
  8.     CIsdkdemoView();
  9.     DECLARE_DYNCREATE(CIsdkdemoView)
  10.  
  11. // Attributes
  12. public:
  13.     CIsdkdemoDoc* GetDocument();
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CIsdkdemoView();
  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. protected:
  28.  
  29. // Generated message map functions
  30. protected:
  31.     //{{AFX_MSG(CIsdkdemoView)
  32.         // NOTE - the ClassWizard will add and remove member functions here.
  33.         //    DO NOT EDIT what you see in these blocks of generated code !
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38. #ifndef _DEBUG  // debug version in isdkdvw.cpp
  39. inline CIsdkdemoDoc* CIsdkdemoView::GetDocument()
  40.    { return (CIsdkdemoDoc*)m_pDocument; }
  41. #endif
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.