Qore EmpathicBuildingDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
EmpathicBuildingLocationDataProvider.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
46 const ChildMap = ...;
47
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 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
65
66
68
70protected:
72public:
73
74
76
80protected:
81 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
82public:
83
84
86protected:
87 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
88public:
89
90};
91};
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 EmpathicBuilding location data provider class.
Definition EmpathicBuildingLocationDataProvider.qc.dox.h:28
*string getDesc()
Returns the data provider description.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
const ProviderSummaryInfo
Provider summary info.
Definition EmpathicBuildingLocationDataProvider.qc.dox.h:36
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
hash< auto > org
Org data.
Definition EmpathicBuildingLocationDataProvider.qc.dox.h:41
constructor(RestClient::RestClient rest, *Logger::LoggerInterface logger, hash< auto > org, hash< auto > loc)
Create the object from the REST connection.
hash< auto > loc
Loc data.
Definition EmpathicBuildingLocationDataProvider.qc.dox.h:44
const ProviderInfo
Provider info.
Definition EmpathicBuildingLocationDataProvider.qc.dox.h:32
Qore EmpathicBuildingDataProvider module definition.
Definition EmpathicBuildingDataProvider.qc.dox.h:26