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
18namespace gr {
19namespace satellites {
20
21/*!
22 * \brief <+description of block+>
23 * \ingroup satellites
24 *
25 */
26class SATELLITES_API lilacsat1_demux : virtual public gr::sync_block
27{
28public:
29 typedef std::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 */
#define SATELLITES_API
Definition api.h:31
<+description of block+>
Definition lilacsat1_demux.h:27
static sptr make(std::string tag)
Return a shared_ptr to a new instance of satellites::lilacsat1_demux.
std::shared_ptr< lilacsat1_demux > sptr
Definition lilacsat1_demux.h:29
Definition ax100_decode.h:17