GandyDrawDoc.cpp
上传用户:do_tie
上传日期:2007-11-03
资源大小:1095k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

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