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

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

* empty log message *

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