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

📄 gsaresponse.h

📁   这是一个简单的GPSNMEA-0183协议解析库开发平台
💻 H
字号:
// GSAResponse.h: interface for the CGSAResponse class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GSARESPONSE_H__FB3160A5_F675_4060_A8CE_5AB58735FBA3__INCLUDED_)
#define AFX_GSARESPONSE_H__FB3160A5_F675_4060_A8CE_5AB58735FBA3__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "nmea.h"

class CGSAResponse  
{
public:
	CGSAResponse();
	virtual ~CGSAResponse();
	BOOL Parse(const CNmeaSentence &sentence);
	void Empty();

	CString m_StateWay;
	int     m_StateType;
	int		m_1Cha;
	int		m_2Cha;
	int		m_3Cha;
	int		m_4Cha;
	int		m_5Cha;
	int		m_6Cha;
	int		m_7Cha;
	int		m_8Cha;
	int		m_9Cha;
	int		m_10Cha;
	int		m_11Cha;
	int		m_12Cha;
	double	m_PDOP;
	double	m_HDOP;
	double	m_VDOP;
};

#endif // !defined(AFX_GSARESPONSE_H__FB3160A5_F675_4060_A8CE_5AB58735FBA3__INCLUDED_)

⌨️ 快捷键说明

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