Qore GoogleCalendarDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
GoogleCalendarBaseDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28class GoogleCalendarBaseDataProvider : public GoogleDataProvider::GoogleApiParentDataProvider {
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
39protected:
40 const ChildMap = ...;
41
42
43public:
44
46 constructor(*hash<auto> options) ;
47
48
50 constructor(GoogleRestClient::GoogleRestClient rest) ;
51
52
54 string getName();
55
56
58 *string getDesc();
59
60
62 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
63
64
66
68protected:
70public:
71
72
74
78protected:
79 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
80public:
81
82
84 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
85
86};
87};
The parent class for Google calendar REST APIs.
Definition GoogleCalendarBaseDataProvider.qc.dox.h:28
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
const ProviderInfo
Provider info.
Definition GoogleCalendarBaseDataProvider.qc.dox.h:32
*string getDesc()
Returns the data provider description.
const ProviderSummaryInfo
Provider summary info.
Definition GoogleCalendarBaseDataProvider.qc.dox.h:36
constructor(*hash< auto > options)
Creates the object from constructor options.
*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.
constructor(GoogleRestClient::GoogleRestClient rest)
Creates the object from a REST connection.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
string getName()
Returns the data provider name.
Qore GoogleCalendarDataProvider module definition.
Definition GoogleCalendarBaseDataProvider.qc.dox.h:26