2012-03-16 10:55:58 +00:00
|
|
|
/*!
|
|
|
|
* \file tcp_packet_data.h
|
2013-01-28 23:50:09 +00:00
|
|
|
* \brief Interface of the TCP data packet class
|
2012-03-16 10:55:58 +00:00
|
|
|
* \author David Pubill, 2011. dpubill(at)cttc.es
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2018-05-13 20:49:11 +00:00
|
|
|
* Copyright (C) 2010-2018 (see AUTHORS file for a list of contributors)
|
2012-03-16 10:55:58 +00:00
|
|
|
*
|
|
|
|
* GNSS-SDR is a software defined Global Navigation
|
|
|
|
* Satellite Systems receiver
|
|
|
|
*
|
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
|
|
|
* GNSS-SDR is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
2015-01-08 18:49:59 +00:00
|
|
|
* (at your option) any later version.
|
2012-03-16 10:55:58 +00:00
|
|
|
*
|
|
|
|
* GNSS-SDR is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-05-13 20:49:11 +00:00
|
|
|
* along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2012-03-16 10:55:58 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2012-03-24 02:53:00 +00:00
|
|
|
#ifndef GNSS_SDR_TCP_PACKET_DATA_H_
|
|
|
|
#define GNSS_SDR_TCP_PACKET_DATA_H_
|
2012-03-16 10:55:58 +00:00
|
|
|
|
2013-01-28 23:50:09 +00:00
|
|
|
/*!
|
|
|
|
* \brief Class that implements a TCP data packet
|
|
|
|
*/
|
2019-02-22 09:47:24 +00:00
|
|
|
class Tcp_Packet_Data
|
2012-03-16 10:55:58 +00:00
|
|
|
{
|
|
|
|
public:
|
2019-02-22 09:47:24 +00:00
|
|
|
Tcp_Packet_Data();
|
|
|
|
~Tcp_Packet_Data();
|
2012-03-24 02:53:00 +00:00
|
|
|
float proc_pack_code_error;
|
|
|
|
float proc_pack_carr_error;
|
2012-07-03 12:52:12 +00:00
|
|
|
float proc_pack_carrier_doppler_hz;
|
2012-03-16 10:55:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|