locationsystemui/locationsysui/locpsysettings/locpsysettingsui/inc/locpsycommandhandler.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: Interface class that provides the command handling functionality. |
|
15 * The class implementing it should be prepared to handle all commands |
|
16 * except those internal to the calling UI |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 #ifndef MLOCPSYCOMMANDHANDLER_H_ |
|
22 #define MLOCPSYCOMMANDHANDLER_H_ |
|
23 |
|
24 // System Include |
|
25 #include <e32base.h> |
|
26 |
|
27 // Class Definition |
|
28 /** |
|
29 * Interface class that provides the command handling functionality. |
|
30 */ |
|
31 class MLocPsyCommandHandler |
|
32 { |
|
33 public: |
|
34 /** |
|
35 * Command handlikng function |
|
36 * |
|
37 * @param aCommand Command that needs to be handled |
|
38 */ |
|
39 virtual void HandleCommandL( TInt aCommand ) = 0; |
|
40 }; |
|
41 |
|
42 #endif //MLOCPSYCOMMANDHANDLER_H_ |
|
43 |