Simple implementation of CSV export.
This commit is contained in:
@ -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
|
||||
|
||||
Reference in New Issue
Block a user