messagingfw/msgtestfw/TestActions/Email/Imap4/inc/CMtfTestActionLoadImapSettings.h
equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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 |
|
17 |
|
18 #ifndef __CMTFTESTACTIONLOADIMAPSETTINGS_H__ |
|
19 #define __CMTFTESTACTIONLOADIMAPSETTINGS_H__ |
|
20 |
|
21 |
|
22 #include "CMtfSynchronousTestAction.h" |
|
23 |
|
24 class CEmailAccounts; |
|
25 class TImapAccount; |
|
26 class CImImap4Settings; |
|
27 class CImSmtpSettings; |
|
28 class CImIAPPreferences; |
|
29 |
|
30 _LIT( KTestActionLoadImapSettings,"LoadImapSettings"); |
|
31 |
|
32 class CMtfTestActionLoadImapSettings : public CMtfSynchronousTestAction |
|
33 { |
|
34 public: |
|
35 static CMtfTestAction* NewL( CMtfTestCase& aTestCase,CMtfTestActionParameters* aActionParameters ); |
|
36 virtual void ExecuteActionL(); |
|
37 ~CMtfTestActionLoadImapSettings(); |
|
38 |
|
39 private: |
|
40 CMtfTestActionLoadImapSettings(CMtfTestCase& aTestCase); |
|
41 |
|
42 void LoadAccountSettingsL(CEmailAccounts& aEmailAccount, const TImapAccount& aAccount, CImImap4Settings& aImapSettings, CImIAPPreferences& aImapIapSettings, CImSmtpSettings& aSmtpSettings, CImIAPPreferences& aSmtpIapSettings); |
|
43 }; |
|
44 |
|
45 |
|
46 #endif // __CMTFTESTACTIONLOADIMAPSETTINGS_H__ |