diff options
Diffstat (limited to 'SQLiteStudio3/coreSQLiteStudio/csvformat.h')
| -rw-r--r-- | SQLiteStudio3/coreSQLiteStudio/csvformat.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/SQLiteStudio3/coreSQLiteStudio/csvformat.h b/SQLiteStudio3/coreSQLiteStudio/csvformat.h index c569147..5ce00ad 100644 --- a/SQLiteStudio3/coreSQLiteStudio/csvformat.h +++ b/SQLiteStudio3/coreSQLiteStudio/csvformat.h @@ -8,9 +8,12 @@ struct API_EXPORT CsvFormat { CsvFormat(); CsvFormat(const QString& columnSeparator, const QString& rowSeparator); + CsvFormat(const QString& columnSeparator, const QString& rowSeparator, bool strictRowSeparator, bool strictColumnSeparator); QString columnSeparator; QString rowSeparator; + bool strictColumnSeparator = false; + bool strictRowSeparator = false; static const CsvFormat DEFAULT; }; |
