GNU Radio's SATELLITES Package
ao40_rs_decoder.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2017 Daniel Estevez <daniel@destevez.net>.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
19
20#ifndef INCLUDED_SATELLITES_AO40_RS_DECODER_H
21#define INCLUDED_SATELLITES_AO40_RS_DECODER_H
22
23#include <satellites/api.h>
24#include <gnuradio/block.h>
25
26namespace gr {
27 namespace satellites {
28
29 /*!
30 * \brief <+description of block+>
31 * \ingroup satellites
32 *
33 */
34 class SATELLITES_API ao40_rs_decoder : virtual public gr::block
35 {
36 public:
37 typedef boost::shared_ptr<ao40_rs_decoder> sptr;
38
39 /*!
40 * \brief Return a shared_ptr to a new instance of satellites::ao40_rs_decoder.
41 *
42 * To avoid accidental use of raw pointers, satellites::ao40_rs_decoder's
43 * constructor is in a private implementation
44 * class. satellites::ao40_rs_decoder::make is the public interface for
45 * creating new instances.
46 */
47 static sptr make(bool verbose);
48 };
49
50 } // namespace satellites
51} // namespace gr
52
53#endif /* INCLUDED_SATELLITES_AO40_RS_DECODER_H */
54
#define SATELLITES_API
Definition api.h:30
<+description of block+>
Definition ao40_rs_decoder.h:35
boost::shared_ptr< ao40_rs_decoder > sptr
Definition ao40_rs_decoder.h:37
static sptr make(bool verbose)
Return a shared_ptr to a new instance of satellites::ao40_rs_decoder.
Definition ao40_deinterleaver.h:25