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

📄 gpsnavdoc.cpp

📁 程序实现了PDA对手持型GPS的导航设计。用一个串口类控制串口通讯
💻 CPP
字号:
// GpsNavDoc.cpp : implementation of the CGpsNavDoc class
//

#include "stdafx.h"
#include "GpsNav.h"

#include "GpsNavDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CGpsNavDoc

IMPLEMENT_DYNCREATE(CGpsNavDoc, CDocument)

BEGIN_MESSAGE_MAP(CGpsNavDoc, CDocument)
	//{{AFX_MSG_MAP(CGpsNavDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CGpsNavDoc construction/destruction

CGpsNavDoc::CGpsNavDoc()
{
	// TODO: add one-time construction code here
	nDisFormat=0;
	m_Serial=NULL;
	m_Info="";
	CWayPoint p;
	m_Way.AddWpt(p);
}

CGpsNavDoc::~CGpsNavDoc()
{
	m_Way.DelAll();
	delete m_Serial;
}

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

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}


/////////////////////////////////////////////////////////////////////////////
// CGpsNavDoc serialization

void CGpsNavDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CGpsNavDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CGpsNavDoc commands

⌨️ 快捷键说明

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