Qore EmpathicBuildingDataProvider Module Reference 1.1
Loading...
Searching...
No Matches
EmpathicBuildingLocationsDataProvider.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<string, hash<auto>> locmap;
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 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
62
63
65 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
66
67
69
71protected:
73public:
74
75
77
81protected:
82 *AbstractDataProvider getChildProviderImpl(string name);
83public:
84
85
87protected:
88 hash<string, hash<auto>> getAllLocs();
89public:
90
91};
92};
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 locations.
Definition EmpathicBuildingLocationsDataProvider.qc.dox.h:28
constructor(RestClient::RestClient rest, *Logger::LoggerInterface logger, hash< auto > org)
Creates the object from a REST connection.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
const ProviderInfo
Provider info.
Definition EmpathicBuildingLocationsDataProvider.qc.dox.h:32
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
hash< auto > org
Org info.
Definition EmpathicBuildingLocationsDataProvider.qc.dox.h:41
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
hash< string, hash< auto > > getAllLocs()
Returns access info for all tables.
const ProviderSummaryInfo
Provider summary info.
Definition EmpathicBuildingLocationsDataProvider.qc.dox.h:36
*string getDesc()
Returns the data provider description.
hash< string, hash< auto > > locmap
Location map.
Definition EmpathicBuildingLocationsDataProvider.qc.dox.h:44
Qore EmpathicBuildingDataProvider module definition.
Definition EmpathicBuildingDataProvider.qc.dox.h:26