Qore Pop3ClientDataProvider Module Reference 2.0
Loading...
Searching...
No Matches
Pop3ClientMessageDataProvider.qc.dox.h
1// -*- mode: c++; indent-tabs-mode: nil -*-
3
26namespace Pop3ClientDataProvider {
29
30public:
32 const ProviderInfo = ...;
33
34
35protected:
37 string id;
38
39 const ChildMap = ...;
40
41
42public:
43
45 constructor(Pop3Client pop3, string id) ;
46
47
49 string getName();
50
51
53 *string getDesc();
54
55
57 *list<hash<DataProviderSummaryInfo>> getChildProviderSummaryInfo();
58
59
61
63protected:
65public:
66
67
69
73protected:
74 *AbstractDataProvider getChildProviderImpl(string name);
75public:
76
77
79protected:
80 hash<DataProviderInfo> getStaticInfoImpl();
81public:
82
83};
84};
The POP3 client data provider class, provides API classes as children.
Definition Pop3ClientDataProviderBase.qc.dox.h:28
The POP3 message parent data provider.
Definition Pop3ClientMessageDataProvider.qc.dox.h:28
hash< DataProviderInfo > getStaticInfoImpl()
Returns data provider static info.
*string getDesc()
Returns the data provider description.
constructor(Pop3Client pop3, string id)
Creates the object from an POP3 connection.
*list< string > getChildProviderNamesImpl()
Returns a list of child data provider names, if any.
*AbstractDataProvider getChildProviderImpl(string name)
Returns the given child provider or nothing if the given child is unknown.
string getName()
Returns the data provider name.
const ProviderInfo
Provider info.
Definition Pop3ClientMessageDataProvider.qc.dox.h:32
string id
Message ID.
Definition Pop3ClientMessageDataProvider.qc.dox.h:37
*list< hash< DataProviderSummaryInfo > > getChildProviderSummaryInfo()
Return data provider summary info.
Qore Pop3ClientDataProvider class definition.
Definition Pop3ClientDataProvider.qc.dox.h:26