Open excel file automatically when generated

This commit is contained in:
2025-05-28 17:37:53 +02:00
parent dcde8c01be
commit 514968a082
11 changed files with 97 additions and 69 deletions

View File

@@ -15,6 +15,7 @@ namespace platform {
void reportSingle(bool excel);
void reportAll(bool excel, bool tex, bool index);
void buildAll();
std::string getExcelFileName() const { return excelFileName; }
private:
std::vector<std::string> getModels();
std::vector<std::string> getDatasets(json table);
@@ -33,6 +34,7 @@ namespace platform {
int maxModelName = 0;
int maxDatasetName = 0;
int minLength = 13; // Minimum length for scores
std::string excelFileName;
};
}
#endif