| 11 | namespace factories |
| 12 | { |
| 13 | bool IsExistFactoryName(std::string_view _factoryName) |
| 14 | { |
| 15 | return ::components::FactoryManager::GetInstancePtr()->ExistFactory(_factoryName); |
| 16 | } |
| 17 | |
| 18 | void RegisterFactory(::components::IFactory* _factory, std::string_view _factoryName) |
| 19 | { |
no test coverage detected