2011-10-01 18:45:20 +00:00
|
|
|
/*!
|
2013-01-28 23:50:09 +00:00
|
|
|
* \file observables_interface.h
|
2011-12-28 21:36:45 +00:00
|
|
|
* \brief This class represents an interface to an Observables block.
|
2011-10-01 18:45:20 +00:00
|
|
|
* \author Javier Arribas, 2011. jarribas(at)cttc.es
|
|
|
|
*
|
2011-12-28 21:36:45 +00:00
|
|
|
* Abstract class for Observables modules. Since all its methods are virtual,
|
2011-10-01 18:45:20 +00:00
|
|
|
* this class cannot be instantiated directly, and a subclass can only be
|
|
|
|
* instantiated directly if all inherited pure virtual methods have been
|
|
|
|
* implemented by that class or a parent class.
|
|
|
|
*
|
2020-07-28 14:57:15 +00:00
|
|
|
* -----------------------------------------------------------------------------
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
2020-12-30 12:35:06 +00:00
|
|
|
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2011-10-01 18:45:20 +00:00
|
|
|
* This file is part of GNSS-SDR.
|
|
|
|
*
|
2020-12-30 12:35:06 +00:00
|
|
|
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
|
2020-02-08 00:20:02 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2011-10-01 18:45:20 +00:00
|
|
|
*
|
2020-07-28 14:57:15 +00:00
|
|
|
* -----------------------------------------------------------------------------
|
2011-10-01 18:45:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2020-02-08 09:10:46 +00:00
|
|
|
#ifndef GNSS_SDR_OBSERVABLES_INTERFACE_H
|
|
|
|
#define GNSS_SDR_OBSERVABLES_INTERFACE_H
|
2011-10-01 18:45:20 +00:00
|
|
|
|
|
|
|
#include "gnss_block_interface.h"
|
|
|
|
|
2020-11-01 12:37:19 +00:00
|
|
|
/** \addtogroup Core
|
|
|
|
* \{ */
|
|
|
|
/** \addtogroup GNSS_Block_Interfaces
|
|
|
|
* \{ */
|
|
|
|
|
|
|
|
|
2011-10-01 18:45:20 +00:00
|
|
|
/*!
|
|
|
|
* \brief This abstract class represents an interface to an observables block.
|
|
|
|
*
|
|
|
|
* Abstract class for pseudorange_intefaces, derived from GNSSBlockInterface.
|
|
|
|
* Since all its methods are virtual,
|
|
|
|
* this class cannot be instantiated directly, and a subclass can only be
|
|
|
|
* instantiated directly if all inherited pure virtual methods have been
|
|
|
|
* implemented by that class or a parent class.
|
|
|
|
*/
|
|
|
|
class ObservablesInterface : public GNSSBlockInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void reset() = 0;
|
|
|
|
};
|
|
|
|
|
2020-11-01 12:37:19 +00:00
|
|
|
|
|
|
|
/** \} */
|
|
|
|
/** \} */
|
2020-02-08 09:10:46 +00:00
|
|
|
#endif // GNSS_SDR_OBSERVABLES_INTERFACE_H
|