MCPcopy Create free account
hub / github.com/AimRT/AimRT / ExportCoreRef

Function ExportCoreRef

src/runtime/python_runtime/export_core.h:26–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26inline void ExportCoreRef(pybind11::object m) {
27 pybind11::class_<CoreRef>(std::move(m), "CoreRef")
28 .def(pybind11::init<>())
29 .def("__bool__", &CoreRef::operator bool)
30 .def("Info", &CoreRef::Info)
31 .def("GetConfigurator", &CoreRef::GetConfigurator)
32 .def("GetLogger", &CoreRef::GetLogger)
33 .def("GetExecutorManager", &CoreRef::GetExecutorManager)
34 .def("GetRpcHandle", &CoreRef::GetRpcHandle)
35 .def("GetChannelHandle", &CoreRef::GetChannelHandle)
36 .def("GetParameterHandle", &CoreRef::GetParameterHandle);
37}
38
39} // namespace aimrt::runtime::python_runtime

Callers 1

PYBIND11_MODULEFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected