source: ntrip/trunk/BNC/GPSS/gpssDecoder.h@ 1374

Last change on this file since 1374 was 1315, checked in by mervart, 16 years ago

* empty log message *

File size: 528 bytes
RevLine 
[1310]1
2#ifndef GPSSDECODER_H
3#define GPSSDECODER_H
4
5#include <QtCore>
6
7#include "RTCM/GPSDecoder.h"
8#include "RTCM3/rtcm3torinex.h"
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:
[1311]23 int _mode;
[1314]24 int _recordSize;
[1311]25 std::string _buffer;
[1310]26} ;
27
28#endif
29
Note: See TracBrowser for help on using the repository browser.