Qore FixedLengthUtil Module Reference 1.5
Loading...
Searching...
No Matches
FixedLengthReadDataProviderFactory.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace FixedLengthUtil {
28class FixedLengthReadDataProviderFactory : public AbstractDataProviderFactory {
29
30public:
31protected:
33 static Class cls = new Class("FixedLengthReadDataProvider");
34
36 const FactoryInfo = <DataProviderFactoryInfo>{
37 "name": "fixedlengthread",
38 "desc": "Fixed length data reader data provider factory",
39 "children_can_support_records": True,
40 };
41
42public:
43
45
47protected:
48 hash<DataProviderFactoryInfo> getInfoImpl();
49public:
50
51
53
55protected:
56 hash<DataProviderInfo> getProviderInfoImpl();
57public:
58
59
61protected:
62 Class getClassImpl();
63public:
64
65};
66};
The read-only fixed-length data provider factory.
Definition: FixedLengthReadDataProviderFactory.qc.dox.h:28
static Class cls
Data provider type info.
Definition: FixedLengthReadDataProviderFactory.qc.dox.h:33
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
const FactoryInfo
Factory info.
Definition: FixedLengthReadDataProviderFactory.qc.dox.h:36
Class getClassImpl()
Returns the class for the data provider object.
The FixedLengthUtil namespace contains all the definitions in the FixedLengthUtil module.
Definition: FixedLengthAbstractIterator.qc.dox.h:27