17 lines
285 B
C++
17 lines
285 B
C++
#pragma once
|
|
|
|
#include <nlohmann/json.hpp>
|
|
#include "reports/ExcelFile.h"
|
|
|
|
using json = nlohmann::ordered_json;
|
|
|
|
namespace platform {
|
|
|
|
class DatasetsExcel : public ExcelFile {
|
|
public:
|
|
DatasetsExcel();
|
|
~DatasetsExcel();
|
|
void report(json& data);
|
|
};
|
|
}
|