画图Doc.cpp
上传用户:tjxl888
上传日期:2022-07-19
资源大小:7312k
文件大小:1k
源码类别:

绘图程序

开发平台:

Visual C++

  1. // 画图Doc.cpp : C画图Doc 类的实现
  2. //
  3. #include "stdafx.h"
  4. #include "画图.h"
  5. #include "画图Doc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // C画图Doc
  10. IMPLEMENT_DYNCREATE(C画图Doc, CDocument)
  11. BEGIN_MESSAGE_MAP(C画图Doc, CDocument)
  12. END_MESSAGE_MAP()
  13. // C画图Doc 构造/析构
  14. C画图Doc::C画图Doc()
  15. {
  16. // TODO: 在此添加一次性构造代码
  17. }
  18. C画图Doc::~C画图Doc()
  19. {
  20. }
  21. BOOL C画图Doc::OnNewDocument()
  22. {
  23. if (!CDocument::OnNewDocument())
  24. return FALSE;
  25. // TODO: 在此添加重新初始化代码
  26. // (SDI 文档将重用该文档)
  27. return TRUE;
  28. }
  29. // C画图Doc 序列化
  30. void C画图Doc::Serialize(CArchive& ar)
  31. {
  32. if (ar.IsStoring())
  33. {
  34. // TODO: 在此添加存储代码
  35. }
  36. else
  37. {
  38. // TODO: 在此添加加载代码
  39. }
  40. }
  41. // C画图Doc 诊断
  42. #ifdef _DEBUG
  43. void C画图Doc::AssertValid() const
  44. {
  45. CDocument::AssertValid();
  46. }
  47. void C画图Doc::Dump(CDumpContext& dc) const
  48. {
  49. CDocument::Dump(dc);
  50. }
  51. #endif //_DEBUG
  52. // C画图Doc 命令