/* * Copyright 2013-2021 Sylvain Munaut * * This file is part of gr-fosphor * * SPDX-License-Identifier: GPL-3.0-or-later */ #include #include #include namespace py = pybind11; #include #define D(...) "" void bind_glfw_sink_c(py::module& m) { using glfw_sink_c = gr::fosphor::glfw_sink_c; py::class_>(m, "glfw_sink_c", D(glfw_sink_c)) .def(py::init(&glfw_sink_c::make), D(glfw_sink_c,make) ) ; }