summaryrefslogtreecommitdiff
path: root/gr-dtv/python/dtv/bindings/atsc_trellis_encoder_python.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-dtv/python/dtv/bindings/atsc_trellis_encoder_python.cc')
-rw-r--r--gr-dtv/python/dtv/bindings/atsc_trellis_encoder_python.cc47
1 files changed, 47 insertions, 0 deletions
diff --git a/gr-dtv/python/dtv/bindings/atsc_trellis_encoder_python.cc b/gr-dtv/python/dtv/bindings/atsc_trellis_encoder_python.cc
new file mode 100644
index 0000000000..a21f4f5bac
--- /dev/null
+++ b/gr-dtv/python/dtv/bindings/atsc_trellis_encoder_python.cc
@@ -0,0 +1,47 @@
+/*
+ * Copyright 2020 Free Software Foundation, Inc.
+ *
+ * This file is part of GNU Radio
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ *
+ */
+
+/***********************************************************************************/
+/* This file is automatically generated using bindtool and can be manually edited */
+/* The following lines can be configured to regenerate this file during cmake */
+/* If manual edits are made, the following tags should be modified accordingly. */
+/* BINDTOOL_GEN_AUTOMATIC(1) */
+/* BINDTOOL_USE_PYGCCXML(0) */
+/* BINDTOOL_HEADER_FILE(atsc_trellis_encoder.h) */
+/* BINDTOOL_HEADER_FILE_HASH(54e8ce920a8d66154e6e5c5ed15a90be) */
+/***********************************************************************************/
+
+#include <pybind11/complex.h>
+#include <pybind11/pybind11.h>
+#include <pybind11/stl.h>
+
+namespace py = pybind11;
+
+#include <gnuradio/dtv/atsc_trellis_encoder.h>
+// pydoc.h is automatically generated in the build directory
+#include <atsc_trellis_encoder_pydoc.h>
+
+void bind_atsc_trellis_encoder(py::module& m)
+{
+
+ using atsc_trellis_encoder = ::gr::dtv::atsc_trellis_encoder;
+
+
+ py::class_<atsc_trellis_encoder,
+ gr::sync_block,
+ gr::block,
+ gr::basic_block,
+ std::shared_ptr<atsc_trellis_encoder>>(
+ m, "atsc_trellis_encoder", D(atsc_trellis_encoder))
+
+ .def(py::init(&atsc_trellis_encoder::make), D(atsc_trellis_encoder, make))
+
+
+ ;
+}