| 34 | } |
| 35 | |
| 36 | inline aimrt::CoreRef PyCoreCreateModule( |
| 37 | aimrt::runtime::core::AimRTCore& core, std::string_view module_name) { |
| 38 | return aimrt::CoreRef(core.GetModuleManager().CreateModule("core-py", module_name)); |
| 39 | } |
| 40 | |
| 41 | inline void ExportCore(pybind11::object m) { |
| 42 | using aimrt::runtime::core::AimRTCore; |
nothing calls this directly
no test coverage detected