/usr/include/qgis/qgsnmeaconnection.h is in libqgis-dev 1.7.4+1.7.5~20120320-1.1+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | /***************************************************************************
qgsnmeaconnection.h - description
-------------------
begin : November 30th, 2009
copyright : (C) 2009 by Marco Hugentobler
email : marco at hugis dot net
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSNMEACONNECTION_H
#define QGSNMEACONNECTION_H
#include "qgsgpsconnection.h"
/**Evaluates NMEA sentences coming from a GPS device*/
class CORE_EXPORT QgsNMEAConnection: public QgsGPSConnection
{
Q_OBJECT
public:
QgsNMEAConnection( QIODevice *dev );
~QgsNMEAConnection();
//bool poll( QgsGPSInformation& info, int maxTime );
protected slots:
/**Parse available data source content*/
void parseData();
protected:
/**Store data from the device before it is processed*/
QString mStringBuffer;
/**Splits mStringBuffer into sentences and calls libnmea*/
void processStringBuffer();
//handle the different sentence type
void processGGASentence( const char* data, int len );
void processRMCSentence( const char* data, int len );
void processGSVSentence( const char* data, int len );
void processVTGSentence( const char* data, int len );
void processGSASentence( const char* data, int len );
};
#endif // QGSNMEACONNECTION_H
|