equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: Observes completions of network info and change requests. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __MNETWORKINFOOBS_H |
|
21 #define __MNETWORKINFOOBS_H |
|
22 |
|
23 // INCLUDES |
|
24 #ifndef __E32DEF_H__ |
|
25 #include <e32def.h> |
|
26 #endif |
|
27 |
|
28 #ifndef __MNETWORKSELECT_H |
|
29 #include "MNetworkSelect.h" |
|
30 #endif |
|
31 |
|
32 // DATA TYPES |
|
33 typedef CArrayFixFlat<MNetworkSelect::TNetworkInfo> CNetworkInfoArray; |
|
34 |
|
35 // CLASS DEFINITIONS |
|
36 |
|
37 class MNetworkInfoObserver |
|
38 { |
|
39 public: |
|
40 virtual void HandleNetworkInfoReceivedL( const CNetworkInfoArray* aInfoArray, const TInt aResult)=0; |
|
41 virtual void HandleCurrentNetworkInfoL( const MNetworkSelect::TCurrentNetworkInfo& aCurrentInfo, const TInt aResult)=0; |
|
42 virtual void HandleNetworkChangedL( const MNetworkSelect::TNetworkInfo& aCurrentInfo, const MNetworkSelect::TCurrentNetworkStatus aStatus, const TInt aResult)=0; |
|
43 }; |
|
44 |
|
45 #endif // __MNETWORKINFOOBS_H |
|
46 |
|
47 // end of file |