summaryrefslogtreecommitdiff
path: root/noncore/net/mail/libmailwrapper/pop3wrapper.h
authorjgf <jgf>2003-12-09 21:36:56 (UTC)
committer jgf <jgf>2003-12-09 21:36:56 (UTC)
commit6b45c1f8e0293914c1328f15a665d2ea0fba7b43 (patch) (side-by-side diff)
treed87ef7d3147a52429849a6921e7a8f31fde89aa8 /noncore/net/mail/libmailwrapper/pop3wrapper.h
parent0a1f6405780b18c9f3d953adcfd072de8fd4dc18 (diff)
downloadopie-6b45c1f8e0293914c1328f15a665d2ea0fba7b43.zip
opie-6b45c1f8e0293914c1328f15a665d2ea0fba7b43.tar.gz
opie-6b45c1f8e0293914c1328f15a665d2ea0fba7b43.tar.bz2
POP3 support - first steps
Diffstat (limited to 'noncore/net/mail/libmailwrapper/pop3wrapper.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/libmailwrapper/pop3wrapper.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/noncore/net/mail/libmailwrapper/pop3wrapper.h b/noncore/net/mail/libmailwrapper/pop3wrapper.h
new file mode 100644
index 0000000..b791409
--- a/dev/null
+++ b/noncore/net/mail/libmailwrapper/pop3wrapper.h
@@ -0,0 +1,28 @@
+#ifndef __POP3WRAPPER
+#define __POP3WRAPPER
+
+#include "mailwrapper.h"
+
+class RecMail;
+
+class POP3wrapper : public QObject
+{
+ Q_OBJECT
+
+public:
+ POP3wrapper( POP3account *a );
+ virtual ~POP3wrapper();
+ void listMessages( QList<RecMail> &target );
+ static void pop3_progress( size_t current, size_t maximum );
+
+protected:
+ void login();
+ void logout();
+
+private:
+ POP3account *account;
+ mailpop3 *m_pop3;
+
+};
+
+#endif