画图Doc.cpp
上传用户:tjxl888
上传日期:2022-07-19
资源大小:7312k
文件大小:1k
- // 画图Doc.cpp : C画图Doc 类的实现
- //
- #include "stdafx.h"
- #include "画图.h"
- #include "画图Doc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #endif
- // C画图Doc
- IMPLEMENT_DYNCREATE(C画图Doc, CDocument)
- BEGIN_MESSAGE_MAP(C画图Doc, CDocument)
- END_MESSAGE_MAP()
- // C画图Doc 构造/析构
- C画图Doc::C画图Doc()
- {
- // TODO: 在此添加一次性构造代码
- }
- C画图Doc::~C画图Doc()
- {
- }
- BOOL C画图Doc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: 在此添加重新初始化代码
- // (SDI 文档将重用该文档)
- return TRUE;
- }
- // C画图Doc 序列化
- void C画图Doc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: 在此添加存储代码
- }
- else
- {
- // TODO: 在此添加加载代码
- }
- }
- // C画图Doc 诊断
- #ifdef _DEBUG
- void C画图Doc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void C画图Doc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- // C画图Doc 命令