| 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 |
|
|---|
| 10 | class hassDecoder : public QObject, public GPSDecoder {
|
|---|
| 11 | Q_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.