|
1 /* |
|
2 * Copyright (c) 2005 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: See class definition below. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef __TMCETESTUIENGINECMDCREATEMCEVALUESETTINGS_H__ |
|
21 #define __TMCETESTUIENGINECMDCREATEMCEVALUESETTINGS_H__ |
|
22 |
|
23 // INCLUDES |
|
24 #include "TMCETestUIEngineCmdBase.h" |
|
25 |
|
26 // FORWARD DECLARATIONS |
|
27 class CMCETestUIEngineProfile; |
|
28 |
|
29 // CLASS DEFINITION |
|
30 /** |
|
31 * |
|
32 */ |
|
33 class TMCETestUIEngineCmdCreateMceValueSettings: public TMCETestUIEngineCmdBase |
|
34 { |
|
35 |
|
36 public: // Constructors |
|
37 |
|
38 /** |
|
39 * Constructor. |
|
40 * |
|
41 * @param aEngine UI Engine |
|
42 */ |
|
43 TMCETestUIEngineCmdCreateMceValueSettings( CMCETestUIEngine& aEngine ); |
|
44 |
|
45 /** |
|
46 * Constructor. |
|
47 * |
|
48 * @param aEngine UI Engine |
|
49 * @param aProfile Profile to be used to create new session |
|
50 */ |
|
51 TMCETestUIEngineCmdCreateMceValueSettings( |
|
52 CMCETestUIEngine& aEngine, |
|
53 CMCETestUIEngineProfile& aProfile ); |
|
54 |
|
55 public: // Implementation for base class abstract methods |
|
56 |
|
57 /// Executes a sequence of operations. |
|
58 IMPORT_C void ExecuteL(); |
|
59 |
|
60 /// Returns short textual representation for behavior of command |
|
61 IMPORT_C const TDesC& Caption() const; |
|
62 |
|
63 private: // Not owned data |
|
64 |
|
65 CMCETestUIEngineProfile* iProfile; |
|
66 |
|
67 }; |
|
68 |
|
69 #endif // __TMCETESTUIENGINECMDCREATESESSION_H__ |