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

Last change on this file since 2492 was 2492, checked in by stoecker, 14 years ago

removed double storage of RTCM3 stuff

File size: 473 bytes
Line 
1
2#ifndef GPSSDECODER_H
3#define GPSSDECODER_H
4
5#include <QtCore>
6
7#include "RTCM/GPSDecoder.h"
8#include "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.