GNSS-SDR  0.0.19
An Open Source GNSS Software Defined Receiver
Classes | Typedefs | Functions
gnss_block_interface.h File Reference

This interface represents a GNSS block. More...

#include <gnuradio/top_block.h>
#include <cassert>
#include <string>
#include <utility>
#include <boost/make_shared.hpp>
#include <boost/shared_ptr.hpp>

Go to the source code of this file.

Classes

class  GNSSBlockInterface
 This abstract class represents an interface to GNSS blocks. More...
 

Typedefs

template<typename T >
using gnss_shared_ptr = boost::shared_ptr< T >
 

Functions

template<typename C , typename... Args>
gnss_shared_ptr< C > gnss_make_shared (Args &&... args)
 

Detailed Description

This interface represents a GNSS block.

Author
Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com

Abstract class for GNSS block interfaces. 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.


GNSS-SDR is a Global Navigation Satellite System software-defined receiver. This file is part of GNSS-SDR.

Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors) SPDX-License-Identifier: GPL-3.0-or-later


Definition in file gnss_block_interface.h.