GNU Radio's SATELLITES Package
lilacsat1_demux.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2017 Daniel Estevez <daniel@destevez.net>
4  *
5  * This file is part of gr-satellites
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_SATELLITES_LILACSAT1_DEMUX_H
12 #define INCLUDED_SATELLITES_LILACSAT1_DEMUX_H
13 
14 #include <gnuradio/sync_block.h>
15 #include <satellites/api.h>
16 #include <string>
17 
18 namespace gr {
19 namespace satellites {
20 
21 /*!
22  * \brief <+description of block+>
23  * \ingroup satellites
24  *
25  */
26 class SATELLITES_API lilacsat1_demux : virtual public gr::sync_block
27 {
28 public:
29  typedef boost::shared_ptr<lilacsat1_demux> sptr;
30 
31  /*!
32  * \brief Return a shared_ptr to a new instance of satellites::lilacsat1_demux.
33  *
34  * To avoid accidental use of raw pointers, satellits::lilacsat1_demux's
35  * constructor is in a private implementation
36  * class. satellites::lilacsat1_demux::make is the public interface for
37  * creating new instances.
38  */
39  static sptr make(std::string tag);
40 };
41 
42 } // namespace satellites
43 } // namespace gr
44 
45 #endif /* INCLUDED_SATELLITES_LILACSAT1_DEMUX_H */
boost::shared_ptr< lilacsat1_demux > sptr
Definition: lilacsat1_demux.h:29
<+description of block+>
Definition: lilacsat1_demux.h:26
Definition: ax100_decode.h:17
#define SATELLITES_API
Definition: api.h:31