CDlg4Doc.cpp
资源名称:CDlg4.rar [点击查看]
上传用户:gzjczs
上传日期:2022-03-18
资源大小:308k
文件大小:2k
源码类别:
PropertySheet
开发平台:
Visual C++
- // CDlg4Doc.cpp : implementation of the CCDlg4Doc class
- //
- #include "stdafx.h"
- #include "CDlg4.h"
- #include "CDlg4Doc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4Doc
- IMPLEMENT_DYNCREATE(CCDlg4Doc, CDocument)
- BEGIN_MESSAGE_MAP(CCDlg4Doc, CDocument)
- //{{AFX_MSG_MAP(CCDlg4Doc)
- // 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()
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4Doc construction/destruction
- CCDlg4Doc::CCDlg4Doc()
- {
- // TODO: add one-time construction code here
- }
- CCDlg4Doc::~CCDlg4Doc()
- {
- }
- BOOL CCDlg4Doc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4Doc serialization
- void CCDlg4Doc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4Doc diagnostics
- #ifdef _DEBUG
- void CCDlg4Doc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CCDlg4Doc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CCDlg4Doc commands