Begin b_list excel

This commit is contained in:
2024-02-29 12:53:11 +01:00
parent 9a26baec47
commit c69dc08134
58 changed files with 148 additions and 39 deletions

22
src/list/DatasetsExcel.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef DATASETS_EXCEL_H
#define DATASETS_EXCEL_H
#include "ExcelFile.h"
#include <vector>
#include <map>
#include <nlohmann/json.hpp>
using json = nlohmann::json;
namespace platform {
class DatasetsExcel : public ExcelFile {
public:
DatasetsExcel();
~DatasetsExcel();
void report();
private:
void formatColumns();
int datasetNameSize = 25; // Min size of the column
};
}
#endif //DATASETS_EXCEL_H