home *** CD-ROM | disk | FTP | other *** search
- // rtab_vw.h : interface of the CRtab_samView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CRtab_samView : public CView
- {
- protected: // create from serialization only
- CRtab_samView();
- DECLARE_DYNCREATE(CRtab_samView)
-
- // Attributes
- public:
- CRtab_samDoc* GetDocument();
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CRtab_samView();
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CRtab_samView)
- afx_msg void OnDoRipTABDialog();
- afx_msg void OnDoRipTABMDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
-
- public:
- CString CheckBoxStatus, RadioButtonStatus, EditControlStatus;
- };
-
- #ifndef _DEBUG // debug version in rtab_vw.cpp
- inline CRtab_samDoc* CRtab_samView::GetDocument()
- { return (CRtab_samDoc*) m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-