blob: 2876b88758482e996156347e43177127caea5808 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "csvformat.h"
#include <QtGlobal>
const CsvFormat CsvFormat::DEFAULT = {",", "\n"};
CsvFormat::CsvFormat()
{
}
CsvFormat::CsvFormat(const QString& columnSeparator, const QString& rowSeparator) :
columnSeparator(columnSeparator), rowSeparator(rowSeparator)
{
}
|