Qore Pop3ClientDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
Pop3ClientDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
29
30public:
32 const ProviderInfo = ...;
33
34
35protected:
36 const ChildMap = ...;
37
38
39public:
40
42 constructor(*hash<auto> options) ;
43
44
46 constructor(Pop3Client pop3) ;
47
48
50 string getName();
51
52
54 *string getDesc();
55
56
58 *list<hash<DataProviderSummaryInfo>> getChildProviderSummaryInfo();
59
60
62
64protected:
66public:
67
68
70
74protected:
75 *AbstractDataProvider getChildProviderImpl(string name);
76public:
77
78
80protected:
81 hash<DataProviderInfo> getStaticInfoImpl();
82public:
83
84};
85};
The POP3 client data provider class, provides API classes as children.
Definition Pop3ClientDataProviderBase.qc.dox.h:28
*list< hash< DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
constructor(Pop3Client pop3)
Creates the object from an POP3 connection.
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
string getName()
Returns the data provider name.
*string getDesc()
Returns the data provider description.
constructor(*hash< auto > options)
Creates the object from constructor options.
Qore Pop3ClientDataProvider class definition.
Definition Pop3ClientDataProvider.qc.dox.h:26