Qore EmpathicBuildingDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
EmpathicBuildingOrganizationDataProvider.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
43 const ChildMap = ...;
44
45
46public:
47
49 constructor(RestClient::RestClient rest, *Logger::LoggerInterface logger, hash<auto> org) ;
50
51
53 string getName();
54
55
57 *string getDesc();
58
59
61 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
62
63
65
67protected:
69public:
70
71
73
77protected:
78 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
79public:
80
81
83protected:
84 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
85public:
86
87};
88};
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 organization data provider class.
Definition EmpathicBuildingOrganizationDataProvider.qc.dox.h:28
hash< auto > org
Org data.
Definition EmpathicBuildingOrganizationDataProvider.qc.dox.h:41
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
constructor(RestClient::RestClient rest, *Logger::LoggerInterface logger, hash< auto > org)
Create the object from the REST connection.
const ProviderSummaryInfo
Provider summary info.
Definition EmpathicBuildingOrganizationDataProvider.qc.dox.h:36
const ProviderInfo
Provider info.
Definition EmpathicBuildingOrganizationDataProvider.qc.dox.h:32
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
*string getDesc()
Returns the data provider description.
Qore EmpathicBuildingDataProvider module definition.
Definition EmpathicBuildingDataProvider.qc.dox.h:26