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: |
|
15 * This is small interface class for handling P&S subscribe events |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 #ifndef __NCNSUBSCRIBEHANDLER_H__ |
|
22 #define __NCNSUBSCRIBEHANDLER_H__ |
|
23 |
|
24 // INCLUDES |
|
25 // CONSTANTS |
|
26 // MACROS |
|
27 // DATA TYPES |
|
28 // FUNCTION PROTOTYPES |
|
29 // FORWARD DECLARATIONS |
|
30 // CLASS DECLARATION |
|
31 class MNcnSubscribeHandler |
|
32 { |
|
33 // New functions |
|
34 public: |
|
35 /** |
|
36 * Through this method the Property subscribers notify of Property changes |
|
37 * @param aCategory The category of the property to be observed |
|
38 * @param aKey The subkey of the property to be observed |
|
39 */ |
|
40 virtual void HandlePropertyChangedL( const TUid& aCategory, TInt aKey ) = 0; |
|
41 }; |
|
42 |
|
43 #endif //__NCNSUBSCRIBEHANDLER_H__ |