From d9aa870e5d509cc7309ab82dd102a937ab58613a Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Thu, 9 Feb 2017 04:36:04 -0500 Subject: Imported Upstream version 3.1.1+dfsg1 --- SQLiteStudio3/coreSQLiteStudio/csvformat.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'SQLiteStudio3/coreSQLiteStudio/csvformat.h') diff --git a/SQLiteStudio3/coreSQLiteStudio/csvformat.h b/SQLiteStudio3/coreSQLiteStudio/csvformat.h index 5ce00ad..3e8dda2 100644 --- a/SQLiteStudio3/coreSQLiteStudio/csvformat.h +++ b/SQLiteStudio3/coreSQLiteStudio/csvformat.h @@ -3,17 +3,23 @@ #include "coreSQLiteStudio_global.h" #include +#include struct API_EXPORT CsvFormat { CsvFormat(); CsvFormat(const QString& columnSeparator, const QString& rowSeparator); + CsvFormat(const QStringList& columnSeparators, const QStringList& rowSeparators); CsvFormat(const QString& columnSeparator, const QString& rowSeparator, bool strictRowSeparator, bool strictColumnSeparator); QString columnSeparator; QString rowSeparator; + QStringList columnSeparators; + QStringList rowSeparators; bool strictColumnSeparator = false; bool strictRowSeparator = false; + bool multipleRowSeparators = false; + bool multipleColumnSeparators = false; static const CsvFormat DEFAULT; }; -- cgit v1.2.3