gpsinfo.cpp

来自「对于GPS数据NMEA的解析」· C++ 代码 · 共 30 行

CPP
30
字号
// GPSInfo.cpp: implementation of the GPSInfo class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "GPSInfo.h"

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

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

GPSInfo::GPSInfo():
m_latitude(0),
m_longitude(0),
m_altitude(0),
m_nSentences(0),
m_signalQuality(0),
m_satelitesInUse(0)
{
}

GPSInfo::~GPSInfo()
{}

⌨️ 快捷键说明

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