jds_snakeDoc.cpp
资源名称:snake.rar [点击查看]
上传用户:ywxcgood
上传日期:2022-06-03
资源大小:1959k
文件大小:2k
源码类别:
其他游戏
开发平台:
Visual C++
- // jds_snakeDoc.cpp : implementation of the CJds_snakeDoc class
- //
- #include "stdafx.h"
- #include "jds_snake.h"
- #include "jds_snakeDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CJds_snakeDoc
- IMPLEMENT_DYNCREATE(CJds_snakeDoc, CDocument)
- BEGIN_MESSAGE_MAP(CJds_snakeDoc, CDocument)
- //{{AFX_MSG_MAP(CJds_snakeDoc)
- // NOTE - the ClassWizard will add and remove mapping macros here.
- // DO NOT EDIT what you see in these blocks of generated code!
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CJds_snakeDoc construction/destruction
- CJds_snakeDoc::CJds_snakeDoc()
- {
- // TODO: add one-time construction code here
- }
- CJds_snakeDoc::~CJds_snakeDoc()
- {
- }
- BOOL CJds_snakeDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CJds_snakeDoc serialization
- void CJds_snakeDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CJds_snakeDoc diagnostics
- #ifdef _DEBUG
- void CJds_snakeDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CJds_snakeDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CJds_snakeDoc commands