PlatformDoc.cpp
上传用户:goak128
上传日期:2013-07-17
资源大小:155k
文件大小:1k
源码类别:

控制台编程

开发平台:

C/C++

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