| Line | |
|---|
| 1 | //------------------------------------------------------------------------------
|
|---|
| 2 | //
|
|---|
| 3 | // RTCM2Decoder.h
|
|---|
| 4 | //
|
|---|
| 5 | //------------------------------------------------------------------------------
|
|---|
| 6 |
|
|---|
| 7 | #ifndef INC_RTCM2DECODER_H
|
|---|
| 8 | #define INC_RTCM2DECODER_H
|
|---|
| 9 |
|
|---|
| 10 | #include "GPSDecoder.h"
|
|---|
| 11 | #include "RTCM2.h"
|
|---|
| 12 |
|
|---|
| 13 | class RTCM2Decoder: public GPSDecoder {
|
|---|
| 14 |
|
|---|
| 15 | public:
|
|---|
| 16 | RTCM2Decoder();
|
|---|
| 17 | ~RTCM2Decoder();
|
|---|
| 18 | virtual void Decode(char* buffer, int bufLen);
|
|---|
| 19 |
|
|---|
| 20 | private:
|
|---|
| 21 |
|
|---|
| 22 | std::string _buffer;
|
|---|
| 23 | rtcm2::RTCM2_Obs _ObsBlock;
|
|---|
| 24 | rtcm2::RTCM2packet _PP;
|
|---|
| 25 |
|
|---|
| 26 | };
|
|---|
| 27 |
|
|---|
| 28 | #endif // include blocker
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.