GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
atsc_pad.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 #ifndef INCLUDED_DTV_ATSC_PAD_H
10 #define INCLUDED_DTV_ATSC_PAD_H
11 
12 #include <gnuradio/dtv/api.h>
14 
15 namespace gr {
16 namespace dtv {
17 
18 /*!
19  * \brief <+description of block+>
20  * \ingroup dtv
21  *
22  */
23 class DTV_API atsc_pad : virtual public gr::sync_decimator
24 {
25 public:
26  typedef std::shared_ptr<atsc_pad> sptr;
27 
28  /*!
29  * \brief Return a shared_ptr to a new instance of dtv::atsc_pad.
30  */
31  static sptr make();
32 };
33 
34 } // namespace dtv
35 } // namespace gr
36 
37 #endif /* INCLUDED_DTV_ATSC_PAD_H */
<+description of block+>
Definition: atsc_pad.h:24
std::shared_ptr< atsc_pad > sptr
Definition: atsc_pad.h:26
static sptr make()
Return a shared_ptr to a new instance of dtv::atsc_pad.
synchronous N:1 input to output with history
Definition: sync_decimator.h:26
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29