blob: c569147f1acef1d4f4a14ed50c3779e2c1d06953 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef CSVFORMAT_H
#define CSVFORMAT_H
#include "coreSQLiteStudio_global.h"
#include <QString>
struct API_EXPORT CsvFormat
{
CsvFormat();
CsvFormat(const QString& columnSeparator, const QString& rowSeparator);
QString columnSeparator;
QString rowSeparator;
static const CsvFormat DEFAULT;
};
#endif // CSVFORMAT_H
|