multimediacommsengine/tsrc/MCETestUI/MCETestUIEngine/inc/MMCETestUIEngineCmdProvider.h
equal
deleted
inserted
replaced
|
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 below |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef __MMCETESTUIENGINECMDPROVIDER_H |
|
22 #define __MMCETESTUIENGINECMDPROVIDER_H |
|
23 |
|
24 #include <e32cmn.h> |
|
25 |
|
26 class TMCETestUIEngineCmdBase; |
|
27 |
|
28 /** |
|
29 * Class MMCETestUIEngineCmdProvider is an interface. |
|
30 * Implementing this interface enables controlled way |
|
31 * to access implementing class. Implementing class can |
|
32 * create commands that are suitable to be executed at |
|
33 * certain time. These commands are returned through this |
|
34 * interface. |
|
35 */ |
|
36 class MMCETestUIEngineCmdProvider |
|
37 { |
|
38 public: |
|
39 |
|
40 /** |
|
41 * Gets the commands applicaple to this object. |
|
42 * |
|
43 * @return reference to array of commands |
|
44 */ |
|
45 virtual const RPointerArray<TMCETestUIEngineCmdBase>& |
|
46 GetCommandsL() = 0; |
|
47 }; |
|
48 |
|
49 #endif // MMCETESTUIENGINECMDPROVIDER_H |
|
50 |
|
51 |
|
52 |
|
53 |
|
54 |