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

Function PYBIND11_MODULE

src/runtime/python_runtime/python_runtime_ros2.cc:12–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10using namespace aimrt::runtime::python_runtime;
11
12PYBIND11_MODULE(aimrt_python_runtime_ros2, m) {
13 m.doc() = "AimRT Python support for ROS2 interface";
14
15 // type support
16 ExportRos2TypeSupport(m);
17
18 // channel
19 ExportRos2PublisherFunc(m);
20 ExportRos2SubscribeFunc(m);
21
22 // rpc
23 ExportRos2RpcServiceFunc(m);
24 ExportRos2ClientFunc(m);
25}

Callers

nothing calls this directly

Calls 5

ExportRos2TypeSupportFunction · 0.85
ExportRos2PublisherFuncFunction · 0.85
ExportRos2SubscribeFuncFunction · 0.85
ExportRos2RpcServiceFuncFunction · 0.85
ExportRos2ClientFuncFunction · 0.85

Tested by

no test coverage detected