|
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 __CIMAPRENAME_H__ |
|
17 #define __CIMAPRENAME_H__ |
|
18 |
|
19 #include <e32std.h> |
|
20 #include "cimapcommand.h" |
|
21 |
|
22 |
|
23 /**The CImapRename class encapsulates the sending of the IMAP RENAME |
|
24 command to the remote server. It will also parse the response data from |
|
25 the remote server. |
|
26 @internalTechnology |
|
27 @prototype |
|
28 */ |
|
29 class CImapRename : public CImapCommandEx |
|
30 { |
|
31 public: |
|
32 // Construction and Destruction |
|
33 static CImapRename* NewL(CImapFolderInfo* aSelectedFolderData, TInt aLogId, const TDesC& aOldMailboxName, const TDesC& aNewMailboxName); |
|
34 ~CImapRename(); |
|
35 |
|
36 private: |
|
37 CImapRename(CImapFolderInfo* aSelectedFolderData, TInt aLogId); |
|
38 void ConstructL(const TDesC& aOldMailboxName, const TDesC& aNewMailboxName); |
|
39 |
|
40 // Implements CImapCommand |
|
41 void SendMessageL(TInt aTagId, MOutputStream& aStream); |
|
42 |
|
43 private: |
|
44 HBufC8* iOldMailboxName; |
|
45 HBufC8* iNewMailboxName; |
|
46 }; |
|
47 |
|
48 #endif // __CIMAPRENAME_H__ |