Qore DataProvider Module Reference  2.1.1
NullDataProviderFactory.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace DataProvider {
29 
30 public:
31 protected:
33  static Class cls = new Class("NullDataProvider");
34 
36  const FactoryInfo = ...;
37 
38 
39 public:
40 
42 
44 protected:
45  hash<DataProviderFactoryInfo> getInfoImpl();
46 public:
47 
48 
50 protected:
51  hash<DataProviderInfo> getProviderInfoImpl();
52 public:
53 
54 
56 protected:
57  Class getClassImpl();
58 public:
59 
60 };
61 };
Data provider factory class.
Definition: AbstractDataProviderFactory.qc.dox.h:39
The null data provider factory.
Definition: NullDataProviderFactory.qc.dox.h:28
hash< DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
static Class cls
Data provider type info.
Definition: NullDataProviderFactory.qc.dox.h:33
Class getClassImpl()
Returns the class for the data provider object.
hash< DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
const FactoryInfo
Factory info.
Definition: NullDataProviderFactory.qc.dox.h:36
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27