home *** CD-ROM | disk | FTP | other *** search
- // ordview.h : interface of the CMainView class
- //
- /////////////////////////////////////////////////////////////////////////////
- #ifndef TABVIEW_H
- #include "tabview.h"
- #endif
-
- class CMainView : public CTabView
- {
- protected: // create from serialization only
- CMainView();
- DECLARE_DYNCREATE(CMainView)
-
- // Attributes
- public:
- CTabDoc* GetDocument();
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CMainView();
- virtual void OnInitialUpdate();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMainView)
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in mainview.cpp
- inline CTabDoc* CMainView::GetDocument()
- { return (CTabDoc*) m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-