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 = <DataProviderFactoryInfo>{
37  "name": "csvwrite",
38  "desc": "CSV writer data provider factory",
39  };
40 
41 public:
42 
44 
46 protected:
47  hash<DataProviderFactoryInfo> getInfoImpl();
48 public:
49 
50 
52 
54 protected:
55  hash<DataProviderInfo> getProviderInfoImpl();
56 public:
57 
58 
60 protected:
61  Class getClassImpl();
62 public:
63 
64 };
65 };
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