CServerFrameDoc.cpp
上传用户:bsw_2008
上传日期:2013-07-09
资源大小:2446k
文件大小:2k
源码类别:

棋牌游戏

开发平台:

Visual C++

  1. // CServerFrameDoc.cpp : implementation of the CCServerFrameDoc class
  2. //
  3. #include "stdafx.h"
  4. #include "CServerFrame.h"
  5. #include "CServerFrameSet.h"
  6. #include "CServerFrameDoc.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CCServerFrameDoc
  14. IMPLEMENT_DYNCREATE(CCServerFrameDoc, CDocument)
  15. BEGIN_MESSAGE_MAP(CCServerFrameDoc, CDocument)
  16. //{{AFX_MSG_MAP(CCServerFrameDoc)
  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. // CCServerFrameDoc construction/destruction
  23. CCServerFrameDoc::CCServerFrameDoc()
  24. {
  25. // TODO: add one-time construction code here
  26. }
  27. CCServerFrameDoc::~CCServerFrameDoc()
  28. {
  29. }
  30. BOOL CCServerFrameDoc::OnNewDocument()
  31. {
  32. if (!CDocument::OnNewDocument())
  33. return FALSE;
  34. SetTitle("网络军棋游戏");
  35. // TODO: add reinitialization code here
  36. // (SDI documents will reuse this document)
  37. return TRUE;
  38. }
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CCServerFrameDoc serialization
  41. void CCServerFrameDoc::Serialize(CArchive& ar)
  42. {
  43. if (ar.IsStoring())
  44. {
  45. // TODO: add storing code here
  46. }
  47. else
  48. {
  49. // TODO: add loading code here
  50. }
  51. }
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CCServerFrameDoc diagnostics
  54. #ifdef _DEBUG
  55. void CCServerFrameDoc::AssertValid() const
  56. {
  57. CDocument::AssertValid();
  58. }
  59. void CCServerFrameDoc::Dump(CDumpContext& dc) const
  60. {
  61. CDocument::Dump(dc);
  62. }
  63. #endif //_DEBUG
  64. /////////////////////////////////////////////////////////////////////////////
  65. // CCServerFrameDoc commands