aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/coreSQLiteStudio/csvformat.h
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/csvformat.h')
-rw-r--r--SQLiteStudio3/coreSQLiteStudio/csvformat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/csvformat.h b/SQLiteStudio3/coreSQLiteStudio/csvformat.h
index 3e8dda2..4b6df69 100644
--- a/SQLiteStudio3/coreSQLiteStudio/csvformat.h
+++ b/SQLiteStudio3/coreSQLiteStudio/csvformat.h
@@ -12,6 +12,8 @@ struct API_EXPORT CsvFormat
CsvFormat(const QStringList& columnSeparators, const QStringList& rowSeparators);
CsvFormat(const QString& columnSeparator, const QString& rowSeparator, bool strictRowSeparator, bool strictColumnSeparator);
+ void calculateSeparatorMaxLengths();
+
QString columnSeparator;
QString rowSeparator;
QStringList columnSeparators;
@@ -20,6 +22,8 @@ struct API_EXPORT CsvFormat
bool strictRowSeparator = false;
bool multipleRowSeparators = false;
bool multipleColumnSeparators = false;
+ int maxColumnSeparatorLength = 0;
+ int maxRowSeparatorLength = 0;
static const CsvFormat DEFAULT;
};