#ifndef REPORT_EXCEL_COMPARED_H #define REPORT_EXCEL_COMPARED_H #include "ReportExcel.h" namespace platform { class ReportExcelCompared : public ExcelFile { public: explicit ReportExcelCompared(json& data_A, json& data_B); ~ReportExcelCompared(); void report(); private: void header(); void body(); void footer(std::vector& totals_A, std::vector& totals_B, int row); json& data_A; json& data_B; std::string nodes_label; std::string leaves_label; std::string depth_label; }; }; #endif