#include <cstdlib>
#include <iostream>
#include <map>
#include <string>
#include <tuple>
#include <vector>
#include "benchmark/benchmark.h"
#include "check.h"
#include "string_util.h"
#include "timers.h"
namespace benchmark {
BenchmarkReporter::BenchmarkReporter()
: … { … }
BenchmarkReporter::~BenchmarkReporter() { … }
void BenchmarkReporter::PrintBasicContext(std::ostream *out,
Context const &context) { … }
const char *BenchmarkReporter::Context::executable_name;
BenchmarkReporter::Context::Context()
: … { … }
std::string BenchmarkReporter::Run::benchmark_name() const { … }
double BenchmarkReporter::Run::GetAdjustedRealTime() const { … }
double BenchmarkReporter::Run::GetAdjustedCPUTime() const { … }
}