/* ------------------------------------------------------------------------- * BKG NTRIP Client * ------------------------------------------------------------------------- * * Class: hassDecoder * * Purpose: Decode Data (PPP Corrections) in HASS Format * * Author: L. Mervart * * Created: 19-Nov-2011 * * Changes: * * -----------------------------------------------------------------------*/ #include "hassDecoder.h" #include "bncapp.h" using namespace std; // Constructor //////////////////////////////////////////////////////////////////////////// hassDecoder::hassDecoder() : GPSDecoder() { } // Destructor //////////////////////////////////////////////////////////////////////////// hassDecoder::~hassDecoder() { } // //////////////////////////////////////////////////////////////////////////// t_irc hassDecoder::Decode(char* data, int dataLen, vector& errmsg) { errmsg.clear(); _buffer += QByteArray(data, dataLen); return success; }