source: ntrip/trunk/BNC/GPSS/hassDecoder.h@ 3578

Last change on this file since 3578 was 3578, checked in by mervart, 12 years ago
File size: 600 bytes
RevLine 
[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]10class hassDecoder : public bncEphUser, public GPSDecoder {
[3504]11Q_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:
18 void newCorrLine(QString line, QString staID, long coTime);
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.