Doc.cpp
上传用户:szcysw
上传日期:2013-03-11
资源大小:6752k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // Doc.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "DevDemo.h"
  5. #include "Doc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMyDoc
  13. IMPLEMENT_DYNCREATE(CMyDoc, CDocument)
  14. CMyDoc::CMyDoc()
  15. {
  16. }
  17. BOOL CMyDoc::OnNewDocument()
  18. {
  19. if (!CDocument::OnNewDocument())
  20. return FALSE;
  21. return TRUE;
  22. }
  23. CMyDoc::~CMyDoc()
  24. {
  25. }
  26. BEGIN_MESSAGE_MAP(CMyDoc, CDocument)
  27. //{{AFX_MSG_MAP(CMyDoc)
  28. // NOTE - the ClassWizard will add and remove mapping macros here.
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CMyDoc diagnostics
  33. #ifdef _DEBUG
  34. void CMyDoc::AssertValid() const
  35. {
  36. CDocument::AssertValid();
  37. }
  38. void CMyDoc::Dump(CDumpContext& dc) const
  39. {
  40. CDocument::Dump(dc);
  41. }
  42. #endif //_DEBUG
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CMyDoc serialization
  45. void CMyDoc::Serialize(CArchive& ar)
  46. {
  47. if (ar.IsStoring())
  48. {
  49. // TODO: add storing code here
  50. }
  51. else
  52. {
  53. // TODO: add loading code here
  54. }
  55. }
  56. /////////////////////////////////////////////////////////////////////////////
  57. // CMyDoc commands