Qore FixedLengthUtil Module Reference  1.2.1
FixedLengthReadDataProviderFactory.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
25 // minimum required Qore version
26 // assume local scope for variables, do not use "$" signs
27 // require type definitions everywhere
29 // enable all warnings
30 
32 namespace FixedLengthUtil {
34 class FixedLengthReadDataProviderFactory : public AbstractDataProviderFactory {
35 
36 public:
37 protected:
38  static Class cls = new Class("FixedLengthReadDataProvider");
39 
40 public:
41 
43  string getName();
44 
45 
47 
49  hash<DataProviderInfo> getInfo();
50 
51 
53  Class getClass();
54 
55 };
56 };
Class getClass()
Returns the class for the data provider object.
hash< DataProviderInfo > getInfo()
Returns static provider information.
The read-only fixed-length data provider factory.
Definition: FixedLengthReadDataProviderFactory.qc.dox.h:34
string getName()
Returns the name of the data provider factory.
The FixedLengthUtil namespace contains all the definitions in the FixedLengthUtil module...
Definition: FixedLengthAbstractIterator.qc.dox.h:27