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

Last change on this file since 1445 was 1445, checked in by mervart, 15 years ago

* empty log message *

File size: 479 bytes
Line 
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
12
13 public:
14 gpssDecoder();
15 virtual ~gpssDecoder();
16 virtual t_irc Decode(char* data, int dataLen, std::vector<std::string>& errmsg);
17
18 signals:
19 void newMessage(QByteArray msg, bool showOnScreen);
20 void newGPSEph(gpsephemeris* gpseph);
21
22 private:
23 QByteArray _buffer;
24} ;
25
26#endif
27
Note: See TracBrowser for help on using the repository browser.