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