/*! * \file hybrid_observables.h * \brief Implementation of an adapter of an observables block accepting all kind * of signals to a ObservablesInterface * \author Mara Branzanti 2013. mara.branzanti(at)gmail.com * \author Javier Arribas 2013. jarribas(at)cttc.es * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2018 (see AUTHORS file for a list of contributors) * * GNSS-SDR is a software defined Global Navigation * Satellite Systems receiver * * This file is part of GNSS-SDR. * * GNSS-SDR is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * GNSS-SDR is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNSS-SDR. If not, see . * * ------------------------------------------------------------------------- */ #ifndef GNSS_SDR_HYBRID_OBSERVABLES_H_ #define GNSS_SDR_HYBRID_OBSERVABLES_H_ #include "hybrid_observables_gs.h" #include "observables_interface.h" #include // for gr_complex #include // for basic_block_sptr, top_block_sptr #include #include class ConfigurationInterface; /*! * \brief This class implements an ObservablesInterface for observables of all kind of GNSS signals */ class HybridObservables : public ObservablesInterface { public: HybridObservables(ConfigurationInterface* configuration, const std::string& role, unsigned int in_streams, unsigned int out_streams); ~HybridObservables() = default; inline std::string role() override { return role_; } //! Returns "Hybrid_Observables" inline std::string implementation() override { return "Hybrid_Observables"; } void connect(gr::top_block_sptr top_block) override; void disconnect(gr::top_block_sptr top_block) override; gr::basic_block_sptr get_left_block() override; gr::basic_block_sptr get_right_block() override; inline void reset() override { return; } //! All blocks must have an item_size() function implementation inline size_t item_size() override { return sizeof(gr_complex); } private: hybrid_observables_gs_sptr observables_; bool dump_; bool dump_mat_; std::string dump_filename_; std::string role_; unsigned int in_streams_; unsigned int out_streams_; }; #endif