source: ntrip/trunk/BNC/GPSS/hassDecoder.h@ 3504

Last change on this file since 3504 was 3504, checked in by mervart, 12 years ago
File size: 433 bytes
Line 
1
2#ifndef HASSDECODER_H
3#define HASSDECODER_H
4
5#include <QtCore>
6
7#include "RTCM/GPSDecoder.h"
8#include "rtcm3torinex.h"
9
10class hassDecoder : public QObject, public GPSDecoder {
11Q_OBJECT
12
13 public:
14 hassDecoder();
15 virtual ~hassDecoder();
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
21 private:
22 QByteArray _buffer;
23} ;
24
25#endif
26
Note: See TracBrowser for help on using the repository browser.