fchesdoc.cpp
上传用户:hy11688
上传日期:2007-01-08
资源大小:81k
文件大小:2k
源码类别:

棋牌游戏

开发平台:

Visual C++

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