SimpleMailDoc.cpp
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. // SimpleMailDoc.cpp : implementation of the CSimpleMailDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "SimpleMail.h"
  5. #include "SimpleMailDoc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #endif
  9. // CSimpleMailDoc
  10. IMPLEMENT_DYNCREATE(CSimpleMailDoc, CDocument)
  11. BEGIN_MESSAGE_MAP(CSimpleMailDoc, CDocument)
  12. END_MESSAGE_MAP()
  13. // CSimpleMailDoc construction/destruction
  14. CSimpleMailDoc::CSimpleMailDoc()
  15. {
  16. // TODO: add one-time construction code here
  17. }
  18. CSimpleMailDoc::~CSimpleMailDoc()
  19. {
  20. }
  21. BOOL CSimpleMailDoc::OnNewDocument()
  22. {
  23. if (!CDocument::OnNewDocument())
  24. return FALSE;
  25. // TODO: add reinitialization code here
  26. // (SDI documents will reuse this document)
  27. return TRUE;
  28. }
  29. // CSimpleMailDoc serialization
  30. void CSimpleMailDoc::Serialize(CArchive& ar)
  31. {
  32. if (ar.IsStoring())
  33. {
  34. // TODO: add storing code here
  35. }
  36. else
  37. {
  38. // TODO: add loading code here
  39. }
  40. }
  41. // CSimpleMailDoc diagnostics
  42. #ifdef _DEBUG
  43. void CSimpleMailDoc::AssertValid() const
  44. {
  45. CDocument::AssertValid();
  46. }
  47. void CSimpleMailDoc::Dump(CDumpContext& dc) const
  48. {
  49. CDocument::Dump(dc);
  50. }
  51. #endif //_DEBUG
  52. // CSimpleMailDoc commands