Last change
on this file since 2980 was 2492, checked in by stoecker, 14 years ago |
removed double storage of RTCM3 stuff
|
File size:
473 bytes
|
Rev | Line | |
---|
[1310] | 1 |
|
---|
| 2 | #ifndef GPSSDECODER_H
|
---|
| 3 | #define GPSSDECODER_H
|
---|
| 4 |
|
---|
| 5 | #include <QtCore>
|
---|
| 6 |
|
---|
| 7 | #include "RTCM/GPSDecoder.h"
|
---|
[2492] | 8 | #include "rtcm3torinex.h"
|
---|
[1310] | 9 |
|
---|
| 10 | class gpssDecoder : public QObject, public GPSDecoder {
|
---|
| 11 | Q_OBJECT
|
---|
[1311] | 12 |
|
---|
[1310] | 13 | public:
|
---|
| 14 | gpssDecoder();
|
---|
| 15 | virtual ~gpssDecoder();
|
---|
[1315] | 16 | virtual t_irc Decode(char* data, int dataLen, std::vector<std::string>& errmsg);
|
---|
[1311] | 17 |
|
---|
[1310] | 18 | signals:
|
---|
| 19 | void newMessage(QByteArray msg, bool showOnScreen);
|
---|
| 20 | void newGPSEph(gpsephemeris* gpseph);
|
---|
[1311] | 21 |
|
---|
[1310] | 22 | private:
|
---|
[1429] | 23 | QByteArray _buffer;
|
---|
[1310] | 24 | } ;
|
---|
| 25 |
|
---|
| 26 | #endif
|
---|
| 27 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.