| 18 | using namespace aimrt::runtime::python_runtime; |
| 19 | |
| 20 | PYBIND11_MODULE(aimrt_python_runtime, m) { |
| 21 | m.doc() = "AimRT Python Runtime Module"; |
| 22 | |
| 23 | // type support |
| 24 | ExportPbTypeSupport(m); |
| 25 | |
| 26 | // channel |
| 27 | ExportContext(m); |
| 28 | ExportPublisherRef(m); |
| 29 | ExportSubscriberRef(m); |
| 30 | ExportChannelHandleRef(m); |
| 31 | |
| 32 | // configure |
| 33 | ExportConfiguratorRef(m); |
| 34 | |
| 35 | // log |
| 36 | ExportLoggerRef(m); |
| 37 | |
| 38 | // executor |
| 39 | ExportExecutorRef(m); |
| 40 | ExportExecutorManagerRef(m); |
| 41 | |
| 42 | // rpc |
| 43 | ExportRpcStatus(m); |
| 44 | ExportRpcContext(m); |
| 45 | ExportRpcServiceBase(m); |
| 46 | ExportRpcHandleRef(m); |
| 47 | ExportRpcProxyBase(m); |
| 48 | |
| 49 | // parameter |
| 50 | ExportParameter(m); |
| 51 | |
| 52 | // core handle |
| 53 | ExportModuleInfo(m); |
| 54 | ExportCoreRef(m); |
| 55 | |
| 56 | // module base |
| 57 | ExportModuleBase(m); |
| 58 | |
| 59 | // core runtime |
| 60 | ExportCoreOptions(m); |
| 61 | ExportCore(m); |
| 62 | |
| 63 | // version |
| 64 | ExportVersion(m); |
| 65 | } |
nothing calls this directly
no test coverage detected