equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2010 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: CCCHServerBase declaration |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef M_CCHCONNMONHANDLERNOTIFIER_H |
|
19 #define M_CCHCONNMONHANDLERNOTIFIER_H |
|
20 |
|
21 #include <rconnmon.h> |
|
22 |
|
23 /** |
|
24 * MCCHConnMonHandlerNotifier declaration |
|
25 * @lib cchserver.exe |
|
26 * @since S60 9.2 |
|
27 */ |
|
28 class MCCHConnMonHandlerNotifier |
|
29 { |
|
30 |
|
31 public: |
|
32 |
|
33 /** |
|
34 * Informs observer when network scanning is completed. |
|
35 * |
|
36 * @since S60 9.2 |
|
37 * @param aSNAPs SNAPs info. |
|
38 * @param aError Error code |
|
39 */ |
|
40 virtual void NetworkScanningCompletedL( const TConnMonSNAPInfo& aSNAPs, TInt aError ) = 0; |
|
41 |
|
42 /** |
|
43 * Informs observer when SNAPs availability is changed |
|
44 * |
|
45 * @since S60 9.2 |
|
46 * @param aError Error code. |
|
47 * KErrTimeOut if SNAP availability is not changed in defined time. |
|
48 */ |
|
49 virtual void SNAPsAvailabilityChanged( TInt aError ) = 0; |
|
50 |
|
51 }; |
|
52 |
|
53 #endif // M_CCHCONNMONHANDLERNOTIFIER_H |
|
54 |
|
55 // End of file |
|