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

Last change on this file since 3504 was 3504, checked in by mervart, 12 years ago
File size: 998 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#include "bncapp.h"
20
21using namespace std;
22
23// Constructor
24////////////////////////////////////////////////////////////////////////////
25hassDecoder::hassDecoder() : GPSDecoder() {
26}
27
28// Destructor
29////////////////////////////////////////////////////////////////////////////
30hassDecoder::~hassDecoder() {
31}
32
33//
34////////////////////////////////////////////////////////////////////////////
35t_irc hassDecoder::Decode(char* data, int dataLen, vector<string>& errmsg) {
36
37 errmsg.clear();
38
39 _buffer += QByteArray(data, dataLen);
40
41
42 return success;
43}
Note: See TracBrowser for help on using the repository browser.