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: Header file of psy progress notifier observer |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef DHCPSYPROGRESSREQUESTERNOTIFYOBSERVER_H_ |
|
20 #define DHCPSYPROGRESSREQUESTERNOTIFYOBSERVER_H_ |
|
21 |
|
22 #include <e32base.h> |
|
23 |
|
24 class MDhcpPsyRequesterProgressObserver |
|
25 { |
|
26 public: |
|
27 |
|
28 enum TRequestProgressPhases |
|
29 { |
|
30 EConnectionInitiated, |
|
31 ELocationQueryStarted, |
|
32 ELocationQueryFinished, |
|
33 ECancelled |
|
34 }; |
|
35 |
|
36 public: |
|
37 |
|
38 /** |
|
39 * Notify progress phase of location query |
|
40 * |
|
41 * @param aPhase Current location query phase. |
|
42 * @aPhaseValue Additional information from current phase. (Status value) |
|
43 * |
|
44 * @since 3.2 |
|
45 */ |
|
46 virtual void ProgressPsyRequestNotificationL (TRequestProgressPhases aPhase, |
|
47 TInt aPhaseValue)=0; |
|
48 }; |
|
49 |
|
50 #endif // DHCPSYPROGRESSREQUESTERNOTIFYOBSERVER_H_ |
|