Qore CsvUtil Module Reference  1.10
CsvWriteDataProviderFactory.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace CsvUtil {
28 class CsvWriteDataProviderFactory : public AbstractDataProviderFactory {
29 
30 public:
31 protected:
33  static Class cls = new Class("CsvWriteDataProvider");
34 
36  const FactoryInfo = ...;
37 
38 
39 public:
40 
42 
44 protected:
45  hash<DataProviderFactoryInfo> getInfoImpl();
46 public:
47 
48 
50 
52 protected:
53  hash<DataProviderInfo> getProviderInfoImpl();
54 public:
55 
56 
58 protected:
59  Class getClassImpl();
60 public:
61 
62 };
63 };
The read-only CSV data provider factory.
Definition: CsvWriteDataProviderFactory.qc.dox.h:28
static Class cls
Data provider type info.
Definition: CsvWriteDataProviderFactory.qc.dox.h:33
Class getClassImpl()
Returns the class for the data provider object.
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
const FactoryInfo
Factory info.
Definition: CsvWriteDataProviderFactory.qc.dox.h:36
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
the CsvUtil namespace. All classes used in the CsvUtil module should be inside this namespace
Definition: AbstractCsvIterator.qc.dox.h:28