Qore GoogleDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
GoogleDataProviderFactory.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace GoogleDataProvider {
28class GoogleDataProviderFactory : public DataProvider::AbstractDataProviderFactory {
29
30public:
31protected:
33 static Class cls = new Class("GoogleDataProvider");
34
36 const FactoryInfo = <DataProviderFactoryInfo>{
37 "name": "google",
38 "desc": "Google REST API data provider factory",
39 "children_can_support_apis": True,
40 };
41
42public:
43
45
47protected:
48 hash<DataProvider::DataProviderFactoryInfo> getInfoImpl();
49public:
50
51
53
55protected:
56 hash<DataProvider::DataProviderInfo> getProviderInfoImpl();
57public:
58
59
61protected:
62 Qore::Reflection::Class getClassImpl();
63public:
64
65};
66};
The Google data provider factory: google.
Definition: GoogleDataProviderFactory.qc.dox.h:28
const FactoryInfo
Factory info.
Definition: GoogleDataProviderFactory.qc.dox.h:36
hash< DataProvider::DataProviderInfo > getProviderInfoImpl()
Returns static provider information.
hash< DataProvider::DataProviderFactoryInfo > getInfoImpl()
Returns static factory information without provider_info.
static Class cls
Data provider type info.
Definition: GoogleDataProviderFactory.qc.dox.h:33
Qore::Reflection::Class getClassImpl()
Returns the class for the data provider object.
Qore GoogleDataProvider module definition.
Definition: GoogleCalendarBaseDataProvider.qc.dox.h:26