source: ntrip/trunk/BNC/src/GPSS/hassDecoder.h@ 5120

Last change on this file since 5120 was 5120, checked in by mervart, 11 years ago
File size: 603 bytes
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
10class hassDecoder : public bncEphUser, public GPSDecoder {
11Q_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.