Qore MewsRestDataProvider Module Reference 1.0
Loading...
Searching...
No Matches
MewsRestTablesDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace MewsRestDataProvider {
29
30public:
32 const ProviderInfo = ...;
33
34
37
38protected:
39 const ChildMap = ...;
40
41
42public:
43
45 constructor(*hash<auto> options);
46
47
49 constructor(MewsRestClient mews) ;
50
51
53 string getName();
54
55
57 *string getDesc();
58
59
61 *list<hash<DataProvider::DataProviderSummaryInfo>> getChildProviderSummaryInfo();
62
63
65
67protected:
69public:
70
71
73
77protected:
78 *DataProvider::AbstractDataProvider getChildProviderImpl(string name);
79public:
80
81
83protected:
84 hash<DataProvider::DataProviderInfo> getStaticInfoImpl();
85public:
86
87};
88};
The MewsRest data provider base class.
Definition MewsRestDataProviderBase.qc.dox.h:28
const ConstructorOptions
Constructor options.
Definition MewsRestDataProvider.qc.dox.h:39
The MewsRest data provider class.
Definition MewsRestTablesDataProvider.qc.dox.h:28
*list< hash< DataProvider::DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
string getName()
Returns the data provider name.
*DataProvider::AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
const ProviderInfo
Provider info.
Definition MewsRestTablesDataProvider.qc.dox.h:32
constructor(*hash< auto > options)
Creates the object from constructor options.
hash< DataProvider::DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
constructor(MewsRestClient mews)
Creates the object from the REST client.
*string getDesc()
Returns the data provider description.
const ConstructorOptions
Constructor options.
Definition MewsRestTablesDataProvider.qc.dox.h:36
Qore MewsRestDataProvider module definition.
Definition MewsRestAccountNotesTableDataProvider.qc.dox.h:26