13 * |
13 * |
14 * Description: Base operation class |
14 * Description: Base operation class |
15 * |
15 * |
16 */ |
16 */ |
17 |
17 |
18 |
|
19 |
|
20 #include "emailtrace.h" |
18 #include "emailtrace.h" |
21 #include "ipsplgheaders.h" |
19 #include "ipsplgheaders.h" |
22 |
|
23 |
20 |
24 // ---------------------------------------------------------------------------- |
21 // ---------------------------------------------------------------------------- |
25 // CIpsPlgBaseOperation::~CIpsPlgBaseOperation() |
22 // CIpsPlgBaseOperation::~CIpsPlgBaseOperation() |
26 // ---------------------------------------------------------------------------- |
23 // ---------------------------------------------------------------------------- |
27 // |
24 // |
28 CIpsPlgBaseOperation::~CIpsPlgBaseOperation() |
25 CIpsPlgBaseOperation::~CIpsPlgBaseOperation() |
29 { |
26 { |
30 FUNC_LOG; |
27 FUNC_LOG; |
31 // Cancel() should be called in deriving classes; |
28 // Cancel() should be called in deriving classes; |
32 } |
29 } |
33 |
|
34 |
30 |
35 // ---------------------------------------------------------------------------- |
31 // ---------------------------------------------------------------------------- |
36 // CIpsPlgBaseOperation::CIpsPlgBaseOperation() |
32 // CIpsPlgBaseOperation::CIpsPlgBaseOperation() |
37 // ---------------------------------------------------------------------------- |
33 // ---------------------------------------------------------------------------- |
38 // |
34 // <qmail> priority parameter has been removed |
39 CIpsPlgBaseOperation::CIpsPlgBaseOperation( |
35 CIpsPlgBaseOperation::CIpsPlgBaseOperation( |
40 CMsvSession& aMsvSession, |
36 CMsvSession& aMsvSession, |
41 TInt aPriority, |
|
42 TRequestStatus& aObserverRequestStatus, |
37 TRequestStatus& aObserverRequestStatus, |
43 TInt aFSRequestId, |
38 TInt aFSRequestId, |
44 TFSMailMsgId aFSMailboxId ) |
39 TFSMailMsgId aFSMailboxId ) |
45 : |
40 : |
46 CMsvOperation( aMsvSession, aPriority, aObserverRequestStatus ), |
41 CMsvOperation( aMsvSession, EPriorityStandard, aObserverRequestStatus ), |
47 iFSRequestId( aFSRequestId ), iFSMailboxId( aFSMailboxId ) |
42 iFSRequestId( aFSRequestId ), |
|
43 iFSMailboxId( aFSMailboxId ) |
48 { |
44 { |
49 FUNC_LOG; |
45 FUNC_LOG; |
50 } |
46 } |
51 |
47 |
52 // ---------------------------------------------------------------------------- |
48 // ---------------------------------------------------------------------------- |