home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / docktool / dockvw.h < prev    next >
C/C++ Source or Header  |  1998-03-26  |  2KB  |  59 lines

  1. // dockvw.h : interface of the CDockView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. class CDockView : public CView
  14. {
  15. protected: // create from serialization only
  16.     CDockView();
  17.     DECLARE_DYNCREATE(CDockView)
  18.  
  19. // Attributes
  20. public:
  21.     CDockDoc* GetDocument();
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CDockView)
  29.     public:
  30.     virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  31.     protected:
  32.     //}}AFX_VIRTUAL
  33.  
  34. // Implementation
  35. public:
  36.     virtual ~CDockView();
  37. #ifdef _DEBUG
  38.     virtual void AssertValid() const;
  39.     virtual void Dump(CDumpContext& dc) const;
  40. #endif
  41.  
  42. protected:
  43.  
  44. // Generated message map functions
  45. protected:
  46.     //{{AFX_MSG(CDockView)
  47.         // NOTE - the ClassWizard will add and remove member functions here.
  48.         //    DO NOT EDIT what you see in these blocks of generated code !
  49.     //}}AFX_MSG
  50.     DECLARE_MESSAGE_MAP()
  51. };
  52.  
  53. #ifndef _DEBUG  // debug version in dockvw.cpp
  54. inline CDockDoc* CDockView::GetDocument()
  55.    { return (CDockDoc*)m_pDocument; }
  56. #endif
  57.  
  58. /////////////////////////////////////////////////////////////////////////////
  59.