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