home *** CD-ROM | disk | FTP | other *** search
- // fileivw.h : interface of the CFileitView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- #include "MyDlg.h"
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
-
- class CFileitView : public CView
- {
- protected: // create from serialization only
- CFileitView();
- DECLARE_DYNCREATE(CFileitView)
-
- // Attributes
- public:
- CFileitDoc* GetDocument();
-
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- // Create an object dlg (a dialog box) of class CMyDlg.
- CMyDlg dlg;
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CFileitView();
- 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(CFileitView)
- afx_msg void OnFileTryit();
- afx_msg void OnFileReadit();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in fileivw.cpp
- inline CFileitDoc* CFileitView::GetDocument()
- { return (CFileitDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-