Simple implementation of CSV export.

This commit is contained in:
2026-01-06 10:04:26 +01:00
parent 3e6273cb7d
commit 99ed398c2f
8 changed files with 46 additions and 0 deletions

View File

@ -50,6 +50,10 @@ QList<ModelItemValues> FileHandler::getItemValuesFromCSVFile(const QString& file
return result;
}
bool FileHandler::exportToCSVFile(const QList<QStringList>& rows, const QString& filePath) {
return CsvParser::exportToCSVFile(rows, filePath);
}
FileHandler::FileHandler() {}
/** Tries to open the file specified by the file path & returns the content