GNSS-SDR 0.0.21
An Open Source GNSS Software Defined Receiver
Loading...
Searching...
No Matches
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 * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
10 * This file is part of GNSS-SDR.
11 *
12 * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
13 * SPDX-License-Identifier: GPL-3.0-or-later
14 *
15 * -----------------------------------------------------------------------------
16 */
17
18#ifndef GNSS_SDR_TCP_PACKET_DATA_H
19#define GNSS_SDR_TCP_PACKET_DATA_H
20
21/** \addtogroup Tracking
22 * \{ */
23/** \addtogroup Tracking_libs
24 * \{ */
25
26
27/*!
28 * \brief Class that implements a TCP data packet
29 */
30class Tcp_Packet_Data
31{
32public:
33 Tcp_Packet_Data() = default;
34 ~Tcp_Packet_Data() = default;
35 float proc_pack_code_error = 0.0;
36 float proc_pack_carr_error = 0.0;
37 float proc_pack_carrier_doppler_hz = 0.0;
38};
39
40
41/** \} */
42/** \} */
43#endif