$darkmode
Qore DataProvider Module Reference 2.7.5
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 
37  "name": "null",
38  "desc": "null data provider factory",
39  "children_can_support_apis": True,
40  };
41 
42 public:
43 
45 
47 protected:
48  hash<DataProviderFactoryInfo> getInfoImpl();
49 public:
50 
51 
53 protected:
54  hash<DataProviderInfo> getProviderInfoImpl();
55 public:
56 
57 
59 protected:
60  Class getClassImpl();
61 public:
62 
63 };
64 };
Data provider factory class.
Definition: AbstractDataProviderFactory.qc.dox.h:68
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
const True
Qore AbstractDataField class definition.
Definition: AbstractDataField.qc.dox.h:27
Data provider factory info.
Definition: AbstractDataProviderFactory.qc.dox.h:42