DocView.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
- // DocView.cpp : implementation file
- //
- #include "stdafx.h"
- #include "DevDemo.h"
- #include "DocView.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CDocView
- IMPLEMENT_DYNCREATE(CDocView, CView)
- CDocView::CDocView()
- {
- }
- CDocView::~CDocView()
- {
- }
- BEGIN_MESSAGE_MAP(CDocView, CView)
- //{{AFX_MSG_MAP(CDocView)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CDocView drawing
- void CDocView::OnDraw(CDC* pDC)
- {
- CDocument* pDoc = GetDocument();
- // TODO: add draw code here
- }
- /////////////////////////////////////////////////////////////////////////////
- // CDocView diagnostics
- #ifdef _DEBUG
- void CDocView::AssertValid() const
- {
- CView::AssertValid();
- }
- void CDocView::Dump(CDumpContext& dc) const
- {
- CView::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CDocView message handlers