File: glfw_sink_c_python.cc

package info (click to toggle)
gr-fosphor 3.9~git20240323.74d54fc-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,260 kB
  • sloc: python: 9,483; ansic: 3,422; cpp: 1,281; lisp: 609; makefile: 33
file content (35 lines) | stat: -rw-r--r-- 653 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
 * Copyright 2013-2021 Sylvain Munaut <tnt@246tNt.com>
 *
 * This file is part of gr-fosphor
 *
 * SPDX-License-Identifier: GPL-3.0-or-later
 */

#include <pybind11/complex.h>
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>

namespace py = pybind11;

#include <gnuradio/fosphor/glfw_sink_c.h>

#define D(...) ""

void bind_glfw_sink_c(py::module& m)
{
	using glfw_sink_c = gr::fosphor::glfw_sink_c;

	py::class_<glfw_sink_c,
		gr::fosphor::base_sink_c,
		gr::sync_block,
		gr::block,
		gr::basic_block,
		std::shared_ptr<glfw_sink_c>>(m, "glfw_sink_c", D(glfw_sink_c))

		.def(py::init(&glfw_sink_c::make),
			D(glfw_sink_c,make)
		)

		;
}