Qore EmpathicBuildingDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
EmpathicBuildingSensorsDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
39protected:
41 hash<auto> org;
42
44 hash<auto> loc;
45
47 hash<string, hash<auto>> sensormap;
48
49public:
50
52 constructor(RestClient::RestClient rest, *Logger::LoggerInterface logger, hash<auto> org, hash<auto> loc) ;
53
54
56 string getName();
57
58
60 *string getDesc();
61
62
64 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
65
66
68 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
69
70
72
74protected:
76public:
77
78
80
84protected:
85 *AbstractDataProvider getChildProviderImpl(string name);
86public:
87
88
90protected:
91 hash<string, hash<auto>> getAllSensors();
92public:
93
94};
95};
The EmpathicBuilding data provider class.
Definition EmpathicBuildingDataProviderBase.qc.dox.h:28
RestClient::RestClient rest
The REST client object for API calls.
Definition EmpathicBuildingDataProviderBase.qc.dox.h:40
The parent class for Empathic Building sensors.
Definition EmpathicBuildingSensorsDataProvider.qc.dox.h:28
const ProviderSummaryInfo
Provider summary info.
Definition EmpathicBuildingSensorsDataProvider.qc.dox.h:36
hash< auto > org
Org info.
Definition EmpathicBuildingSensorsDataProvider.qc.dox.h:41
constructor(RestClient::RestClient rest, *Logger::LoggerInterface logger, hash< auto > org, hash< auto > loc)
Creates the object from a REST connection.
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
hash< string, hash< auto > > getAllSensors()
Returns access info for all tables.
hash< auto > loc
Loc data.
Definition EmpathicBuildingSensorsDataProvider.qc.dox.h:44
hash< string, hash< auto > > sensormap
Sensor map.
Definition EmpathicBuildingSensorsDataProvider.qc.dox.h:47
const ProviderInfo
Provider info.
Definition EmpathicBuildingSensorsDataProvider.qc.dox.h:32
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*string getDesc()
Returns the data provider description.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
Qore EmpathicBuildingDataProvider module definition.
Definition EmpathicBuildingDataProvider.qc.dox.h:26