source: ntrip/trunk/BNC/GPSS/hassDecoder.cpp@ 3505

Last change on this file since 3505 was 3505, checked in by mervart, 12 years ago
File size: 1007 bytes
Line 
1
2/* -------------------------------------------------------------------------
3 * BKG NTRIP Client
4 * -------------------------------------------------------------------------
5 *
6 * Class: hassDecoder
7 *
8 * Purpose: Decode Data (PPP Corrections) in HASS Format
9 *
10 * Author: L. Mervart
11 *
12 * Created: 19-Nov-2011
13 *
14 * Changes:
15 *
16 * -----------------------------------------------------------------------*/
17
18#include "hassDecoder.h"
19
20using namespace std;
21
22// Constructor
23////////////////////////////////////////////////////////////////////////////
24hassDecoder::hassDecoder(const QString& staID) : RTCM3coDecoder(staID) {
25}
26
27// Destructor
28////////////////////////////////////////////////////////////////////////////
29hassDecoder::~hassDecoder() {
30}
31
32//
33////////////////////////////////////////////////////////////////////////////
34t_irc hassDecoder::Decode(char* data, int dataLen, vector<string>& errmsg) {
35
36 errmsg.clear();
37
38 _buffer += QByteArray(data, dataLen);
39
40
41 return success;
42}
Note: See TracBrowser for help on using the repository browser.