home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / mslang / ript16 / sample / rtab_vw.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-04-16  |  1.1 KB  |  46 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 void OnDoRipTABMDialog();
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35.  
  36. public:
  37.     CString CheckBoxStatus, RadioButtonStatus, EditControlStatus;
  38. };
  39.  
  40. #ifndef _DEBUG    // debug version in rtab_vw.cpp
  41. inline CRtab_samDoc* CRtab_samView::GetDocument()
  42.    { return (CRtab_samDoc*) m_pDocument; }
  43. #endif
  44.  
  45. /////////////////////////////////////////////////////////////////////////////
  46.