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: MCCHServiceNotifier declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_CCHSERVICENOTIFIER_H |
|
20 #define M_CCHSERVICENOTIFIER_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <e32std.h> |
|
24 #include <e32base.h> |
|
25 |
|
26 // CONSTANTS |
|
27 // None |
|
28 |
|
29 // MACROS |
|
30 // None |
|
31 |
|
32 // DATA TYPES |
|
33 // None |
|
34 |
|
35 // FUNCTION PROTOTYPES |
|
36 // None |
|
37 |
|
38 // FORWARD DECLARATIONS |
|
39 // None |
|
40 |
|
41 // CLASS DECLARATION |
|
42 |
|
43 /** |
|
44 * MCCHServiceNotifier declaration. |
|
45 * Service state notifier. |
|
46 * @lib cchserver.exe |
|
47 * @since S60 3.2 |
|
48 */ |
|
49 class MCCHServiceNotifier |
|
50 { |
|
51 |
|
52 public: // New functions |
|
53 |
|
54 /** |
|
55 * Service state notifier. |
|
56 * @since S60 3.2 |
|
57 * @param aServiceId Service which state has changed |
|
58 * @param aType Subservice's type. |
|
59 * @param aState A new state of the service. |
|
60 */ |
|
61 virtual void StateChangedL( const TUint aServiceId, |
|
62 const TCCHSubserviceType aType, |
|
63 const TCCHSubserviceState aState, |
|
64 const TInt aError ) = 0; |
|
65 |
|
66 private: |
|
67 |
|
68 }; |
|
69 |
|
70 #endif // M_CCHSERVICENOTIFIER_H |
|
71 |
|
72 // End of file |
|