home *** CD-ROM | disk | FTP | other *** search
/ Total C++ 2 / TOTALCTWO.iso / borland / cmnctrl.pak / CTRLDVW.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  62 lines

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