home *** CD-ROM | disk | FTP | other *** search
- // Ch17View.h : interface of the CCh17View class
- //
- /////////////////////////////////////////////////////////////////////////////
-
- class CCh17View : public CView
- {
- protected: // create from serialization only
- CCh17View();
- DECLARE_DYNCREATE(CCh17View)
-
- // Attributes
- public:
- CCh17Doc* GetDocument();
-
- // Operations
- public:
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CCh17View)
- public:
- virtual void OnDraw(CDC* pDC); // overridden to draw this view
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
- virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
- virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
- //}}AFX_VIRTUAL
-
- // Implementation
- public:
- virtual ~CCh17View();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- protected:
-
- // Generated message map functions
- protected:
- //{{AFX_MSG(CCh17View)
- // 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 Ch17View.cpp
- inline CCh17Doc* CCh17View::GetDocument()
- { return (CCh17Doc*)m_pDocument; }
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
-