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: Abstract class for observe change of setting |
|
15 * through CPhoneCenRepProxy |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __MPHONECENREPOBSERVER_H |
|
21 #define __MPHONECENREPOBSERVER_H |
|
22 |
|
23 // CLASS DECLARATION |
|
24 |
|
25 /** |
|
26 * Abstract class for observe change of setting through CPhoneCenRepProxy |
|
27 */ |
|
28 class MPhoneCenRepObserver |
|
29 { |
|
30 public: // New functions |
|
31 |
|
32 /** |
|
33 * Handle the change of the setting from Central Repository |
|
34 * @param aUid identifing the central repository UID. |
|
35 * @param aId central repository ID. |
|
36 */ |
|
37 virtual void HandleCenRepChangeL( |
|
38 const TUid& aUid, |
|
39 const TUint aId ) = 0; |
|
40 }; |
|
41 |
|
42 #endif // MPHONECENREPOBSERVER_H |
|
43 |
|
44 // End of File |