GNSS-SDR  0.0.13
An Open Source GNSS Software Defined Receiver
tcp_packet_data.h
Go to the documentation of this file.
1 /*!
2  * \file tcp_packet_data.h
3  * \brief Interface of the TCP data packet class
4  * \author David Pubill, 2011. dpubill(at)cttc.es
5  *
6  *
7  * -----------------------------------------------------------------------------
8  *
9  * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
10  *
11  * GNSS-SDR is a software defined Global Navigation
12  * Satellite Systems receiver
13  *
14  * This file is part of GNSS-SDR.
15  *
16  * SPDX-License-Identifier: GPL-3.0-or-later
17  *
18  * -----------------------------------------------------------------------------
19  */
20 
21 #ifndef GNSS_SDR_TCP_PACKET_DATA_H
22 #define GNSS_SDR_TCP_PACKET_DATA_H
23 
24 /*!
25  * \brief Class that implements a TCP data packet
26  */
28 {
29 public:
31  ~Tcp_Packet_Data() = default;
32  float proc_pack_code_error;
33  float proc_pack_carr_error;
34  float proc_pack_carrier_doppler_hz;
35 };
36 
37 #endif
Class that implements a TCP data packet.