9 #ifndef CPPBENCHMARK_REPORTER_CSV_H
10 #define CPPBENCHMARK_REPORTER_CSV_H
33 ReporterCSV(std::ostream& stream = std::cout) : _stream(stream) {}
46 std::ostream& _stream;
Comma-separated values (CSV) reporter.
ReporterCSV & operator=(ReporterCSV &&)=delete
ReporterCSV(const ReporterCSV &)=delete
void ReportPhase(const PhaseCore &phase, const PhaseMetrics &metrics) override
Report current phase information.
ReporterCSV(std::ostream &stream=std::cout)
Default class constructor.
virtual ~ReporterCSV()=default
ReporterCSV & operator=(const ReporterCSV &)=delete
void ReportHeader() override
Report header.
ReporterCSV(ReporterCSV &&)=delete
C++ Benchmark project definitions.
Reporter base definition.