ShowBMPDoc.cpp
资源名称:ShowBMP.rar [点击查看]
上传用户:zhuahui520
上传日期:2022-07-26
资源大小:344k
文件大小:2k
源码类别:
对话框与窗口
开发平台:
Visual C++
- // ShowBMPDoc.cpp : implementation of the CShowBMPDoc class
- //
- #include "stdafx.h"
- #include "ShowBMP.h"
- #include "ShowBMPDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CShowBMPDoc
- IMPLEMENT_DYNCREATE(CShowBMPDoc, CDocument)
- BEGIN_MESSAGE_MAP(CShowBMPDoc, CDocument)
- //{{AFX_MSG_MAP(CShowBMPDoc)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CShowBMPDoc construction/destruction
- CShowBMPDoc::CShowBMPDoc()
- {
- // TODO: add one-time construction code here
- }
- CShowBMPDoc::~CShowBMPDoc()
- {
- }
- BOOL CShowBMPDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CShowBMPDoc serialization
- void CShowBMPDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CShowBMPDoc diagnostics
- #ifdef _DEBUG
- void CShowBMPDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CShowBMPDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CShowBMPDoc commands