knowL: Knowledge Libraries
Loading...
Searching...
No Matches
knowl
src
knowCore
CSVWriter.h
1
#include <QByteArray>
2
3
class
QIODevice;
4
class
QString;
5
class
QVariant;
6
7
namespace
knowCore
8
{
9
class
CSVWriter
10
{
11
public
:
12
CSVWriter
(QIODevice* _device,
int
_fields,
const
QByteArray& _seperator =
","
);
13
~CSVWriter
();
14
CSVWriter
& operator<<(
int
_value);
15
CSVWriter
& operator<<(
const
QString& _value);
16
CSVWriter
& operator<<(
const
QVariant& _value);
17
private
:
18
struct
Private
;
19
Private
*
const
d;
20
};
21
}
knowCore::CSVWriter
Definition
CSVWriter.h:10
knowCore::CSVWriter::Private
Definition
CSVWriter.cpp:8
Generated by
1.12.0