Qore CsvUtil Module Reference
1.7.1
CsvReadDataProviderFactory.qc.dox.h
1
// -*- mode: c++; indent-tabs-mode: nil -*-
3
25
// minimum required Qore version
26
// assume local scope for variables, do not use "$" signs
27
// require type definitions everywhere
29
// enable all warnings
30
32
namespace
CsvUtil
{
34
class
CsvReadDataProviderFactory
:
public
AbstractDataProviderFactory {
35
36
public
:
37
protected
:
38
static
Class cls =
new
Class(
"CsvReadDataProvider"
);
39
40
public
:
41
43
string
getName
();
44
45
47
49
hash<DataProviderInfo>
getInfo
();
50
51
53
Class
getClass
();
54
55
};
56
};
CsvUtil::CsvReadDataProviderFactory::getClass
Class getClass()
Returns the class for the data provider object.
CsvUtil::CsvReadDataProviderFactory::getInfo
hash< DataProviderInfo > getInfo()
Returns static provider information.
CsvUtil
the CsvUtil namespace. All classes used in the CsvUtil module should be inside this namespace
Definition:
AbstractCsvIterator.qc.dox.h:28
CsvUtil::CsvReadDataProviderFactory
The read-only CSV data provider factory.
Definition:
CsvReadDataProviderFactory.qc.dox.h:34
CsvUtil::CsvReadDataProviderFactory::getName
string getName()
Returns the name of the data provider factory.