FLASHDOC.CPP
上传用户:scztsn
上传日期:2022-07-09
资源大小:50k
文件大小:2k
- // flashDoc.cpp : implementation of the CFlashDoc class
- //
- #include "stdafx.h"
- #include "flash.h"
- #include "flashDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CFlashDoc
- IMPLEMENT_DYNCREATE(CFlashDoc, CDocument)
- BEGIN_MESSAGE_MAP(CFlashDoc, CDocument)
- //{{AFX_MSG_MAP(CFlashDoc)
- // 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()
- /////////////////////////////////////////////////////////////////////////////
- // CFlashDoc construction/destruction
- CFlashDoc::CFlashDoc()
- {
- // TODO: add one-time construction code here
- }
- CFlashDoc::~CFlashDoc()
- {
- }
- BOOL CFlashDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CFlashDoc serialization
- void CFlashDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CFlashDoc diagnostics
- #ifdef _DEBUG
- void CFlashDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CFlashDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CFlashDoc commands