⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mapxmobileviewerdoc.cpp

📁 mapx嵌入式插件
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -