gpsguidoc.cpp

来自「这是一个简单的软件开发包(SDK)」· C++ 代码 · 共 52 行

CPP
52
字号
#include "stdafx.h"
#include "GPSGuiDoc.h"

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

IMPLEMENT_DYNCREATE(CGPSGuiDoc, CDocument)

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

CGPSGuiDoc::CGPSGuiDoc()
{
}

CGPSGuiDoc::~CGPSGuiDoc()
{
}

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

	return TRUE;
}


void CGPSGuiDoc::Serialize(CArchive& /*ar*/)
{
  ASSERT(FALSE);
}


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

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

⌨️ 快捷键说明

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