Files
Platform/src/reports/DatasetsExcel.h

16 lines
328 B
C++

#ifndef DATASETSEXCEL_H
#define DATASETSEXCEL_H
#include <nlohmann/json.hpp>
#include "reports/ExcelFile.h"
namespace platform {
using json = nlohmann::ordered_json;
class DatasetsExcel : public ExcelFile {
public:
DatasetsExcel();
~DatasetsExcel();
void report(json& data);
};
}
#endif