equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 /** |
|
21 @file |
|
22 */ |
|
23 |
|
24 |
|
25 #ifndef __CMTF_TEST_ACTION_RESET_MESSAGE_STORE_H__ |
|
26 #define __CMTF_TEST_ACTION_RESET_MESSAGE_STORE_H__ |
|
27 |
|
28 |
|
29 #include "CMtfTestAction.h" |
|
30 #include "CMtfTestActionUtilsDeleteAllChildren.h" |
|
31 |
|
32 |
|
33 _LIT(KTestActionResetMessageStore,"ResetMessageStore"); |
|
34 |
|
35 |
|
36 class CMtfTestActionResetMessageStore : public CMtfTestAction |
|
37 { |
|
38 public: |
|
39 static CMtfTestAction* NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* ActionParameters); |
|
40 virtual ~CMtfTestActionResetMessageStore(); |
|
41 |
|
42 virtual void ExecuteActionL(); |
|
43 |
|
44 protected: |
|
45 void DoCancel(); |
|
46 void RunL(); |
|
47 |
|
48 private: |
|
49 CMtfTestActionResetMessageStore(CMtfTestCase& aTestCase); |
|
50 |
|
51 |
|
52 void RunL_V2(); |
|
53 |
|
54 private: |
|
55 CMsvSession* iSession; |
|
56 CMtfTestActionUtilsDeleteAllChildren* iDeleteAllChildren; |
|
57 }; |
|
58 |
|
59 |
|
60 #endif |