| 7213 | struct StreamingReporterBase : SharedImpl<IStreamingReporter> { |
| 7214 | |
| 7215 | StreamingReporterBase( ReporterConfig const& _config ) |
| 7216 | : m_config( _config.fullConfig() ), |
| 7217 | stream( _config.stream() ) |
| 7218 | {} |
| 7219 | |
| 7220 | virtual ~StreamingReporterBase(); |
| 7221 |
nothing calls this directly
no test coverage detected