blob: 3217203d2476208b341df8d4d247048be42a262d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef CSVSERIALIZER_H
#define CSVSERIALIZER_H
#include "coreSQLiteStudio_global.h"
#include "csvformat.h"
class API_EXPORT CsvSerializer
{
public:
static QString serialize(const QList<QStringList>& data, const CsvFormat& format);
static QString serialize(const QStringList& data, const CsvFormat& format);
static QList<QStringList> deserialize(const QString& data, const CsvFormat& format);
};
#endif // CSVSERIALIZER_H
|