equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2007 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: Declarations for class MCSPCenRepObserver |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef MCSPCENREPOBSERVER_H |
|
21 #define MCSPCENREPOBSERVER_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <e32std.h> |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * Observer interface for indicating P&S changes |
|
30 * |
|
31 */ |
|
32 class MCSPCenRepObserver |
|
33 { |
|
34 public: // New functions |
|
35 |
|
36 /** |
|
37 * Handler for changed event. |
|
38 * @param aUid uid of setting |
|
39 * @param aKey the changed key |
|
40 * @param aVal value |
|
41 */ |
|
42 virtual void HandleNotifyCenRepL( const TUid aUid, |
|
43 const TUint32 aKey, |
|
44 TInt aVal) = 0; |
|
45 }; |
|
46 |
|
47 #endif // MCSPCENREPOBSERVER_H |
|
48 |
|
49 // End of File |
|