GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
atsc_rs_encoder.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2015 Free Software Foundation, Inc.
4  *
5  * SPDX-License-Identifier: GPL-3.0-or-later
6  *
7  */
8 
9 
10 #ifndef INCLUDED_DTV_ATSC_RS_ENCODER_H
11 #define INCLUDED_DTV_ATSC_RS_ENCODER_H
12 
13 #include <gnuradio/dtv/api.h>
14 #include <gnuradio/sync_block.h>
15 
16 namespace gr {
17 namespace dtv {
18 
19 /*!
20  * \brief <+description of block+>
21  * \ingroup dtv
22  *
23  */
24 class DTV_API atsc_rs_encoder : virtual public gr::sync_block
25 {
26 public:
27  typedef std::shared_ptr<atsc_rs_encoder> sptr;
28 
29  /*!
30  * \brief Return a shared_ptr to a new instance of dtv::atsc_rs_encoder.
31  */
32  static sptr make();
33 };
34 
35 } // namespace dtv
36 } // namespace gr
37 
38 #endif /* INCLUDED_DTV_ATSC_RS_ENCODER_H */
<+description of block+>
Definition: atsc_rs_encoder.h:25
std::shared_ptr< atsc_rs_encoder > sptr
Definition: atsc_rs_encoder.h:27
static sptr make()
Return a shared_ptr to a new instance of dtv::atsc_rs_encoder.
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29