equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: Class definition of Cell change Observer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_LBTCELLCHANGEOBSERVER_H |
|
20 #define M_LBTCELLCHANGEOBSERVER_H |
|
21 |
|
22 /** |
|
23 * Observer interface for cell changes. This |
|
24 * interface is implemented by CLbtCellSupervisor. |
|
25 */ |
|
26 class MCellChangeObserver |
|
27 { |
|
28 public: |
|
29 |
|
30 /** |
|
31 * Handles cell change event. Deriving class must implement this. |
|
32 * |
|
33 * @param aStatus status of event. KErrNone if everything is fine. |
|
34 * @param aNwInfo network information |
|
35 * @param aLocArea location information |
|
36 */ |
|
37 virtual void HandleCellChangeEvent( |
|
38 const TInt aStatus, |
|
39 const RMobilePhone::TMobilePhoneNetworkInfoV1& aNwInfo, |
|
40 const RMobilePhone::TMobilePhoneLocationAreaV1& aLocArea) = 0; |
|
41 }; |
|
42 |
|
43 #endif //M_LBTCELLCHANGEOBSERVER_H |