Begin b_list excel
This commit is contained in:
22
src/list/DatasetsExcel.h
Normal file
22
src/list/DatasetsExcel.h
Normal 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
|
Reference in New Issue
Block a user