#ifndef REPORT_H #define REPORT_H #include #include #include using json = nlohmann::json; const int MAXL = 121; namespace platform { using namespace std; class Report { public: explicit Report(json data_) { data = data_; }; virtual ~Report() = default; void show(); private: void header(); void body(); void footer(); string fromVector(const string& key); json data; double totalScore; // Total score of all results in a report }; }; #endif