Qore GoogleCalendarDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
GoogleCalendarDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
28class GoogleCalendarDataProvider : public GoogleDataProvider::GoogleApiParentDataProvider {
29
30public:
31protected:
32 static hash<string, Reflection::Class> childMap;
33
34public:
35
37 constructor(GoogleRestClient::GoogleRestClient rest, string id) : GoogleDataProvider::GoogleApiParentDataProvider(rest, GoogleDiscoveryCalendarApiName, "calendars", {
38 "calendarId": id,
39 }, NOTHING, "events", "acl") {
40 }
41
43 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
44
45
47 static registerChild(string pathname, Reflection::Class cls);
48
50protected:
51 static deregisterChild(string pathname);
52public:
53
54
56
58protected:
60public:
61
62
64
68protected:
69 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
70public:
71
72};
73};
static registerChild(string pathname, Reflection::Class cls)
Register a new child data provider for Google calendars.
static deregisterChild(string pathname)
Deregister the named child data provider.
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
constructor(GoogleRestClient::GoogleRestClient rest, string id)
Creates the object from a REST connection.
Definition GoogleCalendarDataProvider.qc.dox.h:37
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
Qore GoogleCalendarDataProvider module definition.
Definition GoogleCalendarBaseDataProvider.qc.dox.h:26
const GoogleDiscoveryCalendarApiName
Discovery API name.
Definition GoogleCalendarDataProvider.qm.dox.h:139