summaryrefslogtreecommitdiffstats
path: root/kmail/kmpopheaders.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/kmpopheaders.cpp')
-rw-r--r--kmail/kmpopheaders.cpp75
1 files changed, 75 insertions, 0 deletions
diff --git a/kmail/kmpopheaders.cpp b/kmail/kmpopheaders.cpp
new file mode 100644
index 000000000..8c5866007
--- /dev/null
+++ b/kmail/kmpopheaders.cpp
@@ -0,0 +1,75 @@
+/***************************************************************************
+ kmpopheaders.cpp - description
+ -------------------
+ begin : Mon Oct 22 2001
+ copyright : (C) 2001 by Heiko Hund
+ Thorsten Zachmann
+ email : heiko@ist.eigentlich.net
+ T.Zachmann@zagge.de
+ ***************************************************************************/
+
+#include <config.h>
+#include "kmpopheaders.h"
+#include <kdebug.h>
+
+KMPopHeaders::KMPopHeaders()
+ : mAction(NoAction),
+ mId(),
+ mUid(),
+ mRuleMatched(false),
+ mHeader(0)
+{
+}
+
+KMPopHeaders::~KMPopHeaders(){
+ if (mHeader)
+ delete mHeader;
+}
+
+/** No descriptions */
+KMPopHeaders::KMPopHeaders(const QString& aId, const QString& aUid, KMPopFilterAction aAction)
+ : mAction(aAction),
+ mId(aId),
+ mUid(aUid),
+ mRuleMatched(false),
+ mHeader(0)
+{
+}
+
+/** No descriptions */
+QString KMPopHeaders::id() const{
+ return mId;
+}
+
+/** No descriptions */
+QString KMPopHeaders::uid() const{
+ return mUid;
+}
+
+/** No descriptions */
+KMMessage * KMPopHeaders::header() const{
+ return mHeader;
+}
+
+/** No descriptions */
+void KMPopHeaders::setHeader(KMMessage *aHeader){
+ mHeader = aHeader;
+}
+
+/** No descriptions */
+KMPopFilterAction KMPopHeaders::action() const{
+ return mAction;
+}
+
+/** No descriptions */
+void KMPopHeaders::setAction(KMPopFilterAction aAction){
+ mAction = aAction;
+}
+/** No descriptions */
+void KMPopHeaders::setRuleMatched(bool b){
+ mRuleMatched = b;
+}
+/** No descriptions */
+bool KMPopHeaders::ruleMatched(){
+ return mRuleMatched;
+}