| 16 | } |
| 17 | |
| 18 | bool FactoryManager::ExistFactory(std::string_view _factoryName) |
| 19 | { |
| 20 | return mFactories.find(_factoryName) != mFactories.end(); |
| 21 | } |
| 22 | |
| 23 | void FactoryManager::RegisterFactory(IFactory* _factory, std::string_view _factoryName) |
| 24 | { |
no test coverage detected