home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / ript32 / sample / rtab_vw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-21  |  1.0 KB  |  45 lines

  1. // rtab_vw.h : interface of the CRtab_samView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CRtab_samView : public CView
  6. {
  7. protected: // create from serialization only
  8.     CRtab_samView();
  9.     DECLARE_DYNCREATE(CRtab_samView)
  10.  
  11. // Attributes
  12. public:
  13.     CRtab_samDoc* GetDocument();
  14.  
  15. // Operations
  16. public:
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CRtab_samView();
  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(CRtab_samView)
  31.     afx_msg void OnDoRipTABDialog();
  32.     //}}AFX_MSG
  33.     DECLARE_MESSAGE_MAP()
  34.  
  35. public:
  36.     CString CheckBoxStatus, RadioButtonStatus, EditControlStatus;
  37. };
  38.  
  39. #ifndef _DEBUG    // debug version in rtab_vw.cpp
  40. inline CRtab_samDoc* CRtab_samView::GetDocument()
  41.    { return (CRtab_samDoc*) m_pDocument; }
  42. #endif
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45.