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
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*
|
2019-07-26 10:38:20 +00:00
|
|
|
* Copyright (C) 2010-2019 (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.
|
|
|
|
*
|
2020-02-08 00:20:02 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2012-03-16 10:55:58 +00:00
|
|
|
*
|
|
|
|
* -------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
|
2020-02-08 09:10:46 +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();
|
2019-07-21 17:32:52 +00:00
|
|
|
~Tcp_Packet_Data() = default;
|
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
|