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

Method CreateModule

src/runtime/core/module/module_manager.h:69–71  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 }

Callers

nothing calls this directly

Calls 1

ToAimRTStringViewFunction · 0.85

Tested by

no test coverage detected