$darkmode
Qore EmpathicBuildingDataProvider Module Reference 1.0
EmpathicBuildingMeasurementsDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
33
35 const ProviderInfo = <DataProviderInfo>{
36 "name": "measurements",
37 "desc": "Empathic Building measurements data provider; parent provider for APIs related to measurements",
38 "type": "EmpathicBuildingMeasurementsDataProvider",
40 "supports_children": True,
41 "children_can_support_apis": True,
42 };
43
45 const ProviderSummaryInfo = cast<hash<DataProviderSummaryInfo>>(ProviderInfo{
46 AbstractDataProvider::DataProviderSummaryInfoKeys
47 });
48
49protected:
50 const ChildMap = {
51 "create": Class::forName("EmpathicBuildingDataProvider::EmpathicBuildingMeasurementsCreateDataProvider"),
52 };
53
54public:
55
57 constructor(*hash<auto> options);
58
59
62
63
65 string getName();
66
67
69 *string getDesc();
70
71
73 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
74
75
77
79protected:
81public:
82
83
85
89protected:
91public:
92
93
95 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
96
97};
98};
const ConstructorOptions
Constructor options.
Definition: EmpathicBuildingDataProvider.qc.dox.h:49
The parent class for Empathic Building measurement APIs.
Definition: EmpathicBuildingMeasurementsDataProvider.qc.dox.h:28
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or NOTHING if the given child is unknown.
constructor(*hash< auto > options)
Creates the object from constructor options.
RestClient::RestClient rest
REST client connection.
Definition: EmpathicBuildingMeasurementsDataProvider.qc.dox.h:32
constructor(RestClient::RestClient rest)
Creates the object from a REST connection.
const ProviderInfo
Provider info.
Definition: EmpathicBuildingMeasurementsDataProvider.qc.dox.h:35
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
*string getDesc()
Returns the data provider description.
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
const ProviderSummaryInfo
Provider summary info.
Definition: EmpathicBuildingMeasurementsDataProvider.qc.dox.h:45
const True
Qore EmpathicBuildingDataProvider module definition.
Definition: EmpathicBuildingDataProvider.qc.dox.h:26