File xlsx_exporter.h
File List > benchmark > exporter > xlsx_exporter.h
Go to the documentation of this file
#pragma once
#include "../reporter/result.h"
#include "formatter.h"
#include <ostream>
namespace Argos {
class XLSXExporter {
private:
ExcelFormatter &formatter;
public:
XLSXExporter(ExcelFormatter &formatter);
void Export(const BenchmarkResult &result, std::ostream &out) const;
};
} // namespace Argos