| 8464 | } |
| 8465 | |
| 8466 | void ReporterRegistry::registerReporter(std::string const &name, IReporterFactoryPtr const &factory) { |
| 8467 | m_factories.emplace(name, factory); |
| 8468 | } |
| 8469 | void ReporterRegistry::registerListener(IReporterFactoryPtr const &factory) { |
| 8470 | m_listeners.push_back(factory); |
| 8471 | } |
no test coverage detected