Struct IReporterFactory
Synopsis
#include <include/internal/catch_interfaces_reporter.h>
struct IReporterFactory
Description
No description yet.
Methods
~IReporterFactory | ||
create | ||
getDescription |
Source
Lines 251-255 in include/internal/catch_interfaces_reporter.h.
struct IReporterFactory {
virtual ~IReporterFactory();
virtual IStreamingReporterPtr create( ReporterConfig const& config ) const = 0;
virtual std::string getDescription() const = 0;
};