// MFCHelloCppView.h : interface of the CMFCHelloCppView class
//

#pragma once


class CMFCHelloCppView : public CView
{
protected: // create from serialization only
    CMFCHelloCppView();
    DECLARE_DYNCREATE(CMFCHelloCppView)

// Attributes
public:
    CMFCHelloCppDoc* GetDocument() const;

// Operations
public:

// Overrides
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);

// Implementation
public:
    virtual ~CMFCHelloCppView();
#ifdef _DEBUG
    virtual void AssertValid() const;
    virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
    DECLARE_MESSAGE_MAP()
};

#ifndef _DEBUG  // debug version in MFCHelloCppView.cpp
inline CMFCHelloCppDoc* CMFCHelloCppView::GetDocument() const
   { return reinterpret_cast<CMFCHelloCppDoc*>(m_pDocument); }
#endif