kk_contour_net_shallow/RenderStimuli/CPPExtensions/PyTCopyCPU.cpp
2023-07-28 15:42:20 +02:00

15 lines
256 B
C++

#include <pybind11/pybind11.h>
#include "TCopyCPU.h"
namespace py = pybind11;
PYBIND11_MODULE(PyTCopyCPU, m)
{
m.doc() = "TCopyCPU Module";
py::class_<TCopyCPU>(m, "TCopyCPU")
.def(py::init<>())
.def("process",
&TCopyCPU::process);
}