GNSS-SDR 0.0.21
An Open Source GNSS Software Defined Receiver
Loading...
Searching...
No Matches
gps_cnav_utc_model.h
Go to the documentation of this file.
1/*!
2 * \file gps_cnav_utc_model.h
3 * \brief Interface of a GPS CNAV UTC MODEL storage
4 * \author Javier Arribas, 2013. jarribas(at)cttc.es
5 *
6 * -----------------------------------------------------------------------------
7 *
8 * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
9 * This file is part of GNSS-SDR.
10 *
11 * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
12 * SPDX-License-Identifier: GPL-3.0-or-later
13 *
14 * -----------------------------------------------------------------------------
15 */
16
17
18#ifndef GNSS_SDR_GPS_CNAV_UTC_MODEL_H
19#define GNSS_SDR_GPS_CNAV_UTC_MODEL_H
20
21#include "gps_utc_model.h"
22
23/** \addtogroup Core
24 * \{ */
25/** \addtogroup System_Parameters
26 * \{ */
27
28
29/*!
30 * \brief This class is a storage for the GPS UTC MODEL data as described in in IS-GPS-200M
31 *
32 * See https://www.gps.gov/sites/default/files/2025-07/IS-GPS-200M.pdf Appendix III
33 */
35{
36public:
37 Gps_CNAV_Utc_Model() = default; //!< Default constructor
38};
39
40
41/** \} */
42/** \} */
43#endif // GNSS_SDR_GPS_CNAV_UTC_MODEL_H
Gps_CNAV_Utc_Model()=default
Default constructor.
Gps_Utc_Model()=default
Interface of a GPS UTC MODEL storage.