home *** CD-ROM | disk | FTP | other *** search
- // diaview.h : interface of the CDiaView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CDiaView : public CView
- {
- protected: // create from serialization only
- CDiaView();
- DECLARE_DYNCREATE(CDiaView)
-
- // Attributes
- public:
- CDiaDoc* GetDocument();
-
- // Operations
- public:
-
- // Implementation
- public:
- virtual ~CDiaView();
- 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(CDiaView)
- afx_msg void OnFileTryit();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in diaview.cpp
- inline CDiaDoc* CDiaView::GetDocument()
- { return (CDiaDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-