Rev | Line | |
---|
[3504] | 1 |
|
---|
| 2 | #ifndef HASSDECODER_H
|
---|
| 3 | #define HASSDECODER_H
|
---|
| 4 |
|
---|
| 5 | #include <QtCore>
|
---|
| 6 |
|
---|
[3578] | 7 | #include "bncephuser.h"
|
---|
| 8 | #include "RTCM/GPSDecoder.h"
|
---|
[3504] | 9 |
|
---|
[3578] | 10 | class hassDecoder : public bncEphUser, public GPSDecoder {
|
---|
[3504] | 11 | Q_OBJECT
|
---|
| 12 | public:
|
---|
[3505] | 13 | hassDecoder(const QString& staID);
|
---|
[3504] | 14 | virtual ~hassDecoder();
|
---|
| 15 | virtual t_irc Decode(char* data, int dataLen, std::vector<std::string>& errmsg);
|
---|
| 16 |
|
---|
[3578] | 17 | signals:
|
---|
[5120] | 18 | void newCorrLine(QString line, QString staID, bncTime coTime);
|
---|
[3578] | 19 |
|
---|
[3504] | 20 | private:
|
---|
[3578] | 21 | std::ofstream* _out;
|
---|
| 22 | QString _staID;
|
---|
| 23 | QString _fileNameSkl;
|
---|
| 24 | QString _fileName;
|
---|
| 25 | QByteArray _buffer;
|
---|
| 26 | double _GPSweeks;
|
---|
[3504] | 27 | } ;
|
---|
| 28 |
|
---|
| 29 | #endif
|
---|
| 30 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.