GNU Radio Manual and C++ API Reference 3.10.5.1
The Free & Open Software Radio Ecosystem
atsc_fs_checker.h
Go to the documentation of this file.
1/* -*- c++ -*- */
2/*
3 * Copyright 2014 Free Software Foundation, Inc.
4 *
5 * This file is part of GNU Radio
6 *
7 * SPDX-License-Identifier: GPL-3.0-or-later
8 *
9 */
10
11#ifndef INCLUDED_DTV_ATSC_FS_CHECKER_H
12#define INCLUDED_DTV_ATSC_FS_CHECKER_H
13
14#include <gnuradio/block.h>
15#include <gnuradio/dtv/api.h>
16
17namespace gr {
18namespace dtv {
19
20/*!
21 * \brief ATSC Receiver FS_CHECKER
22 *
23 * \ingroup dtv_atsc
24 */
25class DTV_API atsc_fs_checker : virtual public gr::block
26{
27public:
28 // gr::dtv::atsc_fs_checker::sptr
29 typedef std::shared_ptr<atsc_fs_checker> sptr;
30
31 /*!
32 * \brief Make a new instance of gr::dtv::atsc_fs_checker.
33 */
34 static sptr make();
35};
36
37} /* namespace dtv */
38} /* namespace gr */
39
40#endif /* INCLUDED_DTV_ATSC_FS_CHECKER_H */
The abstract base class for all 'terminal' processing blocks.
Definition: gnuradio-runtime/include/gnuradio/block.h:63
ATSC Receiver FS_CHECKER.
Definition: atsc_fs_checker.h:26
static sptr make()
Make a new instance of gr::dtv::atsc_fs_checker.
std::shared_ptr< atsc_fs_checker > sptr
Definition: atsc_fs_checker.h:29
#define DTV_API
Definition: gr-dtv/include/gnuradio/dtv/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29