equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008-2008 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: MCFContextSourceCommand interface. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_CFCONTEXTSOURCECOMMANDINTERFACE_H |
|
20 #define M_CFCONTEXTSOURCECOMMANDINTERFACE_H |
|
21 |
|
22 |
|
23 // SYSTEM INCLUDE FILES |
|
24 #include <e32std.h> |
|
25 |
|
26 // USER INCLUDE FILES |
|
27 |
|
28 // FORWARD DECLARATIONS |
|
29 class CCFContextSourceCommand; |
|
30 |
|
31 // DATA TYPES |
|
32 |
|
33 // CLASS DECLARATION |
|
34 |
|
35 /** |
|
36 * Context source command interface. |
|
37 * |
|
38 * @lib CFServer |
|
39 * @since S60 5.0 |
|
40 */ |
|
41 class MCFContextSourceCommand |
|
42 { |
|
43 public: |
|
44 |
|
45 /** |
|
46 * Request context source to handle a command. |
|
47 * |
|
48 * @param aCommand is the context source command. |
|
49 * @return None. |
|
50 */ |
|
51 virtual void HandleCommandL( const CCFContextSourceCommand& aCommand ) = 0; |
|
52 |
|
53 }; |
|
54 |
|
55 #endif // M_CFCONTEXTSOURCECOMMANDINTERFACE_H |