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