📄 gpsguidoc.cpp
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -