| 4068 | class ReporterFactory : public IReporterFactory { |
| 4069 | |
| 4070 | virtual IStreamingReporterPtr create( ReporterConfig const& config ) const override { |
| 4071 | return std::unique_ptr<T>( new T( config ) ); |
| 4072 | } |
| 4073 | |
| 4074 | virtual std::string getDescription() const override { |
| 4075 | return T::getDescription(); |
nothing calls this directly
no outgoing calls
no test coverage detected