Qore GoogleCalendarDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
GoogleCalendarsDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28class GoogleCalendarsDataProvider : public GoogleDataProvider::GoogleDataProviderBase {
29
30public:
32 const ProviderInfo = ...;
33
34
37
38
39protected:
41 hash<string, bool> calendars;
42
44 Qore::Thread::Mutex lck();
45
46public:
47
49 constructor(*hash<auto> options);
50
51
53 constructor(GoogleRestClient::GoogleRestClient rest) ;
54
55
57 string getName();
58
59
61 *string getDesc();
62
63
65 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
66
67
69
71protected:
73public:
74
75
77
81protected:
82 *GoogleDataProvider::GoogleDataProviderBase getChildProviderImpl(string name);
83public:
84
85
87 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
88
89
91protected:
92 hash<string, bool> getAllCalendars();
93public:
94
95};
96};
The parent class for REST APIs related to specific Google calendars.
Definition GoogleCalendarsDataProvider.qc.dox.h:28
string getName()
Returns the data provider name.
*string getDesc()
Returns the data provider description.
const ProviderInfo
Provider info.
Definition GoogleCalendarsDataProvider.qc.dox.h:32
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
*GoogleDataProvider::GoogleDataProviderBase getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
constructor(GoogleRestClient::GoogleRestClient rest)
Creates the object from a REST connection.
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
hash< string, bool > calendars
Calendar list.
Definition GoogleCalendarsDataProvider.qc.dox.h:41
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
Qore::Thread::Mutex lck()
Metadata mutex.
constructor(*hash< auto > options)
Creates the object from constructor options.
const ProviderSummaryInfo
Provider summary info.
Definition GoogleCalendarsDataProvider.qc.dox.h:36
hash< string, bool > getAllCalendars()
Returns the set of all calendars.
Qore GoogleCalendarDataProvider module definition.
Definition GoogleCalendarBaseDataProvider.qc.dox.h:26