home *** CD-ROM | disk | FTP | other *** search
- // MyCalvw.h : interface of the CMyCalcView class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CMyCalcView : public CView
- {
- protected: // create from serialization only
- CMyCalcView();
- DECLARE_DYNCREATE(CMyCalcView)
-
- // Attributes
- public:
- CMyCalcDoc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CMyCalcView)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- protected:
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CMyCalcView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CMyCalcView)
- // NOTE - the ClassWizard will add and remove member functions here.
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- #ifndef _DEBUG // debug version in MyCalvw.cpp
- inline CMyCalcDoc* CMyCalcView::GetDocument()
- { return (CMyCalcDoc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-