GNSS-SDR  0.0.19
An Open Source GNSS Software Defined Receiver
observables_interface.h
Go to the documentation of this file.
1 /*!
2  * \file observables_interface.h
3  * \brief This class represents an interface to an Observables block.
4  * \author Javier Arribas, 2011. jarribas(at)cttc.es
5  *
6  * Abstract class for Observables modules. Since all its methods are virtual,
7  * this class cannot be instantiated directly, and a subclass can only be
8  * instantiated directly if all inherited pure virtual methods have been
9  * implemented by that class or a parent class.
10  *
11  * -----------------------------------------------------------------------------
12  *
13  * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
14  * This file is part of GNSS-SDR.
15  *
16  * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
17  * SPDX-License-Identifier: GPL-3.0-or-later
18  *
19  * -----------------------------------------------------------------------------
20  */
21 
22 
23 #ifndef GNSS_SDR_OBSERVABLES_INTERFACE_H
24 #define GNSS_SDR_OBSERVABLES_INTERFACE_H
25 
26 #include "gnss_block_interface.h"
27 
28 /** \addtogroup Core
29  * \{ */
30 /** \addtogroup GNSS_Block_Interfaces
31  * \{ */
32 
33 
34 /*!
35  * \brief This abstract class represents an interface to an observables block.
36  *
37  * Abstract class for pseudorange_intefaces, derived from GNSSBlockInterface.
38  * Since all its methods are virtual,
39  * this class cannot be instantiated directly, and a subclass can only be
40  * instantiated directly if all inherited pure virtual methods have been
41  * implemented by that class or a parent class.
42  */
44 {
45 public:
46  virtual void reset() = 0;
47 };
48 
49 
50 /** \} */
51 /** \} */
52 #endif // GNSS_SDR_OBSERVABLES_INTERFACE_H
This interface represents a GNSS block.
This abstract class represents an interface to GNSS blocks.
This abstract class represents an interface to an observables block.