messagingfw/msgtestfw/TestActions/SendAs/inc/CMtfTestActionSendAsSendMessageNew.h
equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2004-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 __CMtfTestActionSendAsSendMessageNew_H__ |
|
26 #define __CMtfTestActionSendAsSendMessageNew_H__ |
|
27 |
|
28 |
|
29 #include "CMtfTestAction.h" |
|
30 |
|
31 /*@{*/ |
|
32 /// Literal defined for the name of the Test Action |
|
33 _LIT(KTestActionSendAsSendMessageNew,"SendAsSendMessageNew"); |
|
34 /*@}*/ |
|
35 |
|
36 /** |
|
37 SendAsSendMessage Test Action is intended to request the Send-As server to send the message. |
|
38 @internalTechnology |
|
39 */ |
|
40 class CMtfTestActionSendAsSendMessageNew : public CMtfTestAction |
|
41 { |
|
42 public: |
|
43 static CMtfTestAction* NewL(CMtfTestCase& aTestCase,CMtfTestActionParameters* ActionParameters); |
|
44 virtual ~CMtfTestActionSendAsSendMessageNew(); |
|
45 |
|
46 public: |
|
47 virtual void ExecuteActionL(); |
|
48 |
|
49 protected: |
|
50 void DoCancel(); |
|
51 void RunL(); |
|
52 |
|
53 private: |
|
54 CMtfTestActionSendAsSendMessageNew(CMtfTestCase& aTestCase); |
|
55 |
|
56 private: |
|
57 RSendAsMessage iSendAsMessage; |
|
58 }; |
|
59 |
|
60 |
|
61 #endif// __CMtfTestActionSendAsSendMessageNew_H__ |