blob: 2828a49e045ab7ef20405b2b1d9d1fd998b38093 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
/***************************************************************************
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(){
delete mHeader;
}
/** No descriptions */
KMPopHeaders::KMPopHeaders(const TQString& aId, const TQString& aUid, KMPopFilterAction aAction)
: mAction(aAction),
mId(aId),
mUid(aUid),
mRuleMatched(false),
mHeader(0)
{
}
/** No descriptions */
TQString KMPopHeaders::id() const{
return mId;
}
/** No descriptions */
TQString 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;
}
|