福利彩票号码统计Doc.cpp
上传用户:dinghaosmt
上传日期:2013-03-22
资源大小:110k
文件大小:2k
源码类别:

射击游戏

开发平台:

Visual C++

  1. // 福利彩票号码统计Doc.cpp : implementation of the CMyDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "福利彩票号码统计.h"
  5. #include "福利彩票号码统计Set.h"
  6. #include "福利彩票号码统计Doc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CMyDoc
  14. IMPLEMENT_DYNCREATE(CMyDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CMyDoc, CDocument)
  16. //{{AFX_MSG_MAP(CMyDoc)
  17. // NOTE - the ClassWizard will add and remove mapping macros here.
  18. //    DO NOT EDIT what you see in these blocks of generated code!
  19. //}}AFX_MSG_MAP
  20. END_MESSAGE_MAP()
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CMyDoc construction/destruction
  23. CMyDoc::CMyDoc()
  24. {
  25. // TODO: add one-time construction code here
  26. }
  27. CMyDoc::~CMyDoc()
  28. {
  29. }
  30. BOOL CMyDoc::OnNewDocument()
  31. {
  32. if (!CDocument::OnNewDocument())
  33. return FALSE;
  34. // (SDI documents will reuse this document)
  35. return TRUE;
  36. }
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CMyDoc serialization
  39. void CMyDoc::Serialize(CArchive& ar)
  40. {
  41. if (ar.IsStoring())
  42. {
  43. // TODO: add storing code here
  44. }
  45. else
  46. {
  47. // TODO: add loading code here
  48. }
  49. }
  50. /////////////////////////////////////////////////////////////////////////////
  51. // CMyDoc diagnostics
  52. #ifdef _DEBUG
  53. void CMyDoc::AssertValid() const
  54. {
  55. CDocument::AssertValid();
  56. }
  57. void CMyDoc::Dump(CDumpContext& dc) const
  58. {
  59. CDocument::Dump(dc);
  60. }
  61. #endif //_DEBUG
  62. /////////////////////////////////////////////////////////////////////////////
  63. // CMyDoc commands