equal
deleted
inserted
replaced
|
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #ifndef __CIMAPCOPY_H__ |
|
17 #define __CIMAPCOPY_H__ |
|
18 |
|
19 #include <e32std.h> |
|
20 |
|
21 #include "cimapcommand.h" |
|
22 |
|
23 /** |
|
24 @internalTechnology |
|
25 @prototype |
|
26 */ |
|
27 class CImapCopy : public CImapCommandEx |
|
28 { |
|
29 public: |
|
30 // Construction and Destruction |
|
31 static CImapCopy* NewL(CImapFolderInfo* aSelectedFolderData, TInt aLogId, const TDesC8& aSequenceSet, const TDesC& aMailboxName); |
|
32 ~CImapCopy(); |
|
33 |
|
34 private: |
|
35 CImapCopy(CImapFolderInfo* aSelectedFolderData, TInt aLogId); |
|
36 void ConstructL(const TDesC8& aSequenceSet, const TDesC& aMailboxName); |
|
37 |
|
38 // Implements CImapCommand |
|
39 void SendMessageL(TInt aTagId, MOutputStream& aStream); |
|
40 |
|
41 private: |
|
42 // data for send |
|
43 HBufC8* iSequenceSet; |
|
44 HBufC8* iMailboxName; |
|
45 }; |
|
46 |
|
47 #endif // __CIMAPCOPY_H__ |