source: ntrip/trunk/BNC/src/GPSS/gpssDecoder.h@ 5738

Last change on this file since 5738 was 5738, checked in by mervart, 10 years ago
File size: 468 bytes
RevLine 
[1310]1
2#ifndef GPSSDECODER_H
3#define GPSSDECODER_H
4
5#include <QtCore>
6
[5738]7#include "GPSDecoder.h"
[2492]8#include "rtcm3torinex.h"
[1310]9
10class gpssDecoder : public QObject, public GPSDecoder {
11Q_OBJECT
[1311]12
[1310]13 public:
14 gpssDecoder();
15 virtual ~gpssDecoder();
[1315]16 virtual t_irc Decode(char* data, int dataLen, std::vector<std::string>& errmsg);
[1311]17
[1310]18 signals:
19 void newMessage(QByteArray msg, bool showOnScreen);
20 void newGPSEph(gpsephemeris* gpseph);
[1311]21
[1310]22 private:
[1429]23 QByteArray _buffer;
[1310]24} ;
25
26#endif
27
Note: See TracBrowser for help on using the repository browser.