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