| 12398 | } |
| 12399 | |
| 12400 | void ReporterRegistry::registerReporter( std::string const& name, IReporterFactoryPtr const& factory ) { |
| 12401 | m_factories.emplace(name, factory); |
| 12402 | } |
| 12403 | void ReporterRegistry::registerListener( IReporterFactoryPtr const& factory ) { |
| 12404 | m_listeners.push_back( factory ); |
| 12405 | } |
no test coverage detected