MoLectureDoc.cpp
资源名称:MoLecture.rar [点击查看]
上传用户:qinfarui
上传日期:2022-08-10
资源大小:362k
文件大小:2k
源码类别:
GIS编程
开发平台:
Visual C++
- // MoLectureDoc.cpp : implementation of the CMoLectureDoc class
- //
- #include "stdafx.h"
- #include "MoLecture.h"
- #include "MoLectureDoc.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CMoLectureDoc
- IMPLEMENT_DYNCREATE(CMoLectureDoc, CDocument)
- BEGIN_MESSAGE_MAP(CMoLectureDoc, CDocument)
- //{{AFX_MSG_MAP(CMoLectureDoc)
- // 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()
- /////////////////////////////////////////////////////////////////////////////
- // CMoLectureDoc construction/destruction
- CMoLectureDoc::CMoLectureDoc()
- {
- // TODO: add one-time construction code here
- }
- CMoLectureDoc::~CMoLectureDoc()
- {
- }
- BOOL CMoLectureDoc::OnNewDocument()
- {
- if (!CDocument::OnNewDocument())
- return FALSE;
- // TODO: add reinitialization code here
- // (SDI documents will reuse this document)
- return TRUE;
- }
- /////////////////////////////////////////////////////////////////////////////
- // CMoLectureDoc serialization
- void CMoLectureDoc::Serialize(CArchive& ar)
- {
- if (ar.IsStoring())
- {
- // TODO: add storing code here
- }
- else
- {
- // TODO: add loading code here
- }
- }
- /////////////////////////////////////////////////////////////////////////////
- // CMoLectureDoc diagnostics
- #ifdef _DEBUG
- void CMoLectureDoc::AssertValid() const
- {
- CDocument::AssertValid();
- }
- void CMoLectureDoc::Dump(CDumpContext& dc) const
- {
- CDocument::Dump(dc);
- }
- #endif //_DEBUG
- /////////////////////////////////////////////////////////////////////////////
- // CMoLectureDoc commands