ex91Doc.cpp
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // ex91Doc.cpp : implementation of the CEx91Doc class
  2. //
  3. #include "stdafx.h"
  4. #include "ex91.h"
  5. #include "ex91Doc.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CEx91Doc
  13. IMPLEMENT_DYNCREATE(CEx91Doc, CDocument)
  14. BEGIN_MESSAGE_MAP(CEx91Doc, CDocument)
  15. //{{AFX_MSG_MAP(CEx91Doc)
  16. // NOTE - the ClassWizard will add and remove mapping macros here.
  17. //    DO NOT EDIT what you see in these blocks of generated code!
  18. //}}AFX_MSG_MAP
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CEx91Doc construction/destruction
  22. CEx91Doc::CEx91Doc()
  23. {
  24. // TODO: add one-time construction code here
  25. }
  26. CEx91Doc::~CEx91Doc()
  27. {
  28. }
  29. BOOL CEx91Doc::OnNewDocument()
  30. {
  31. if (!CDocument::OnNewDocument())
  32. return FALSE;
  33. x=50;
  34. y=50;
  35. return TRUE;
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CEx91Doc serialization
  39. void CEx91Doc::Serialize(CArchive& ar)
  40. {
  41. /*
  42. if (ar.IsStoring())
  43. {
  44. ar<<x<<y;//存盘
  45. }
  46. else
  47. {
  48. ar>>x>>y;//取盘
  49. }
  50. */
  51. CFile*myfile;
  52.     myfile=ar.GetFile();//获取CArchive类对象所依附的CFile类对象的指针
  53.     if (ar.IsStoring())
  54. {
  55. myfile->Write(&x,2);
  56.     myfile->Write(&y,2);
  57. }
  58. else
  59. {
  60. myfile->Read(&x,2);
  61. myfile->Read(&y,2);
  62. }
  63. }
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CEx91Doc diagnostics
  66. #ifdef _DEBUG
  67. void CEx91Doc::AssertValid() const
  68. {
  69. CDocument::AssertValid();
  70. }
  71. void CEx91Doc::Dump(CDumpContext& dc) const
  72. {
  73. CDocument::Dump(dc);
  74. }
  75. #endif //_DEBUG
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CEx91Doc commands