mapxmobileviewerdoc.cpp

来自「mapx嵌入式插件」· C++ 代码 · 共 76 行

CPP
76
字号
// MapXMobileViewerDoc.cpp : implementation of the CMapXMobileViewerDoc class
//

#include "stdafx.h"
#include "MapXMobileViewer.h"

#include "MapXMobileViewerDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CMapXMobileViewerDoc

IMPLEMENT_DYNCREATE(CMapXMobileViewerDoc, CDocument)

BEGIN_MESSAGE_MAP(CMapXMobileViewerDoc, CDocument)
	//{{AFX_MSG_MAP(CMapXMobileViewerDoc)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CMapXMobileViewerDoc construction/destruction

CMapXMobileViewerDoc::CMapXMobileViewerDoc()
{
}

CMapXMobileViewerDoc::~CMapXMobileViewerDoc()
{
}

BOOL CMapXMobileViewerDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CMapXMobileViewerDoc serialization

void CMapXMobileViewerDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
	}
	else
	{
	}
}

/////////////////////////////////////////////////////////////////////////////
// CMapXMobileViewerDoc diagnostics

#ifdef _DEBUG
void CMapXMobileViewerDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CMapXMobileViewerDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CMapXMobileViewerDoc commands

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?