Add open excel file on b_manage termination

This commit is contained in:
2025-02-25 13:41:06 +01:00
parent 475a819a87
commit de7cf091be
3 changed files with 70 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ namespace platform {
~ManageScreen() = default;
void doMenu();
void updateSize(int rows, int cols);
std::string getExcelFileName() const { return excelFileName; }
private:
void list(const std::string& status, const std::string& color);
void list_experiments(const std::string& status, const std::string& color);
@@ -58,6 +59,7 @@ namespace platform {
std::vector<Paginator> paginator;
ResultsManager results;
lxw_workbook* workbook;
std::string excelFileName;
};
}
#endif