summaryrefslogtreecommitdiff
path: root/gr-soapy/python/soapy/bindings/python_bindings.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-soapy/python/soapy/bindings/python_bindings.cc')
-rw-r--r--gr-soapy/python/soapy/bindings/python_bindings.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-soapy/python/soapy/bindings/python_bindings.cc b/gr-soapy/python/soapy/bindings/python_bindings.cc
index a2f84d1139..26a6f36453 100644
--- a/gr-soapy/python/soapy/bindings/python_bindings.cc
+++ b/gr-soapy/python/soapy/bindings/python_bindings.cc
@@ -14,6 +14,7 @@
namespace py = pybind11;
+void bind_soapy_types(py::module& m);
void bind_block(py::module& m);
void bind_source(py::module& m);
void bind_sink(py::module& m);
@@ -37,6 +38,7 @@ PYBIND11_MODULE(soapy_python, m)
// Allow access to base block methods
py::module::import("gnuradio.gr");
+ bind_soapy_types(m);
bind_block(m);
bind_source(m);
bind_sink(m);