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