?? gpsguidoc.cpp
字號(hào):
#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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -