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: MCCHSPSNotifier declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_CCHSPSNOTIFIER_H |
|
20 #define M_CCHSPSNOTIFIER_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32std.h> |
|
24 #include <e32base.h> |
|
25 #include <spdefinitions.h> |
|
26 |
|
27 // CONSTANTS |
|
28 // None |
|
29 |
|
30 // MACROS |
|
31 // None |
|
32 |
|
33 // DATA TYPES |
|
34 // None |
|
35 |
|
36 // FUNCTION PROTOTYPES |
|
37 // None |
|
38 |
|
39 // FORWARD DECLARATIONS |
|
40 // None |
|
41 |
|
42 // CLASS DECLARATION |
|
43 |
|
44 /** |
|
45 * MCCHServiceNotifier declaration. |
|
46 * Service notifier for CCH server |
|
47 * @lib cchserver.exe |
|
48 * @since S60 3.2 |
|
49 */ |
|
50 class MCCHSPSNotifier |
|
51 { |
|
52 |
|
53 public: // New functions |
|
54 |
|
55 /** |
|
56 * Service table notifier. |
|
57 * @since S60 3.2 |
|
58 * @param aServiceIds New Service Id -array |
|
59 */ |
|
60 virtual void ServiceTableChangeNotifyL( RIdArray& aServiceIds ) = 0; |
|
61 |
|
62 private: |
|
63 |
|
64 }; |
|
65 |
|
66 #endif // M_CCHSPSNOTIFIER_H |
|
67 |
|
68 // End of file |