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