gsvresponse.h

来自「  这是一个简单的GPSNMEA-0183协议解析库开发平台」· C头文件 代码 · 共 39 行

H
39
字号
// GSVResponse.h: interface for the CGSVResponse class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_GSVRESPONSE_H__2A9B4A3F_E427_4870_9205_42611D59D3E5__INCLUDED_)
#define AFX_GSVRESPONSE_H__2A9B4A3F_E427_4870_9205_42611D59D3E5__INCLUDED_

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

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

	int m_nSentences;
	int m_nViewSatellites;
	int m_iSentence;
	int m_1Angle1;
	int m_1Angle2;
	int m_1SNR;
	int m_2Angle1;
	int m_2Angle2;
	int m_2SNR;
	int m_3Angle1;
	int m_3Angle2;
	int m_3SNR;
	int m_4Angle1;
	int m_4Angle2;
	int m_4SNR;
};

#endif // !defined(AFX_GSVRESPONSE_H__2A9B4A3F_E427_4870_9205_42611D59D3E5__INCLUDED_)

⌨️ 快捷键说明

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