equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: Property notification handler observer interface |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef MIMPSPROPERTYNOTIFICATIONOBSERVER_H |
|
21 #define MIMPSPROPERTYNOTIFICATIONOBSERVER_H |
|
22 |
|
23 // CLASS DECLARATION |
|
24 |
|
25 /** |
|
26 * Interface for receiving notifications from CIMPSPropertyObserver when the |
|
27 * value of the observed property changes |
|
28 * |
|
29 * @lib |
|
30 * @since 2.6 |
|
31 */ |
|
32 NONSHARABLE_CLASS( MIMPSPropertyNotificationObserver ) |
|
33 { |
|
34 public: // New functions |
|
35 |
|
36 /** |
|
37 * Called when the value of observed property has changed |
|
38 * @since 2.6 |
|
39 */ |
|
40 virtual void HandlePropertyNotificationEventL( TUid aCategory, TUint aKey ) = 0; |
|
41 |
|
42 }; |
|
43 |
|
44 #endif // MIMPSPROPERTYNOTIFICATIONOBSERVER_H |
|
45 |
|
46 // End of File |