| 67 | |
| 68 | const aimrt_core_base_t* CreateModule(std::string_view pkg, aimrt_module_info_t module_info); |
| 69 | const aimrt_core_base_t* CreateModule(aimrt_module_info_t module_info) { |
| 70 | return CreateModule("core", module_info); |
| 71 | } |
| 72 | const aimrt_core_base_t* CreateModule(std::string_view pkg, std::string_view module_name) { |
| 73 | return CreateModule(pkg, aimrt_module_info_t{.name = aimrt::util::ToAimRTStringView(module_name)}); |
| 74 | } |
nothing calls this directly
no test coverage detected