Changeset 3505 in ntrip for trunk/BNC/GPSS
- Timestamp:
- Nov 19, 2011, 2:57:04 PM (13 years ago)
- Location:
- trunk/BNC/GPSS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/GPSS/hassDecoder.cpp
r3504 r3505 17 17 18 18 #include "hassDecoder.h" 19 #include "bncapp.h"20 19 21 20 using namespace std; … … 23 22 // Constructor 24 23 //////////////////////////////////////////////////////////////////////////// 25 hassDecoder::hassDecoder( ) : GPSDecoder() {24 hassDecoder::hassDecoder(const QString& staID) : RTCM3coDecoder(staID) { 26 25 } 27 26 -
trunk/BNC/GPSS/hassDecoder.h
r3504 r3505 5 5 #include <QtCore> 6 6 7 #include "RTCM/GPSDecoder.h" 8 #include "rtcm3torinex.h" 7 #include "RTCM3/RTCM3coDecoder.h" 9 8 10 class hassDecoder : public QObject, public GPSDecoder {9 class hassDecoder : public RTCM3coDecoder { 11 10 Q_OBJECT 12 11 13 12 public: 14 hassDecoder(); 13 hassDecoder(const QString& staID); 15 14 virtual ~hassDecoder(); 16 15 virtual t_irc Decode(char* data, int dataLen, std::vector<std::string>& errmsg); 17 16 18 signals:19 void newMessage(QByteArray msg, bool showOnScreen);20 21 17 private: 22 QByteArray _buffer;23 18 } ; 24 19
Note:
See TracChangeset
for help on using the changeset viewer.