Qore SaxDataProvider Module Reference 1.10
Loading...
Searching...
No Matches
SaxDataProviderFacory.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace SaxDataProvider {
28class SaxDataProviderFactory : public AbstractDataProviderFactory {
29
30public:
31protected:
33 static Class cls = new Class("SaxDataProvider");
34
36 const FactoryInfo = ...;
37
38
39public:
40
42
44protected:
45 hash<DataProviderFactoryInfo> getInfoImpl();
46public:
47
48
50
52protected:
53 hash<DataProviderInfo> getProviderInfoImpl();
54public:
55
56
58protected:
59 Class getClassImpl();
60public:
61
62
64
80protected:
81 AbstractDataProvider getProviderFromExampleImpl(InputStream example, *hash<auto> constructor_options);
82public:
83
84
86
94protected:
95 list<hash<auto>> getExampleProviderRecordOutputImpl(InputStream example, *hash<auto> constructor_options);
96public:
97
98};
99};
The read-only CSV data provider factory.
Definition SaxDataProviderFacory.qc.dox.h:28
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
static Class cls
Data provider type info.
Definition SaxDataProviderFacory.qc.dox.h:33
const FactoryInfo
Factory info.
Definition SaxDataProviderFacory.qc.dox.h:36
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
AbstractDataProvider getProviderFromExampleImpl(InputStream example, *hash< auto > constructor_options)
Returns a data provider given the example data and constructor options as arguments.
list< hash< auto > > getExampleProviderRecordOutputImpl(InputStream example, *hash< auto > constructor_options)
Returns information about a data provider constructor given the example data as an argument.
Class getClassImpl()
Returns the class for the data provider object.
The main namespace for the SaxDataProvider module.
Definition SaxDataProvider.qc.dox.h:26