equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007-2009 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef _LCFINSTAPSY_H_ |
|
21 #define _LCFINSTAPSY_H_ |
|
22 |
|
23 |
|
24 #include <lbs/epos_cpositioner.h> |
|
25 |
|
26 |
|
27 class CInstaPsy: public CPositioner |
|
28 { |
|
29 public: |
|
30 static CInstaPsy* NewL(TAny* aConstructionParameters); |
|
31 CInstaPsy::~CInstaPsy(); |
|
32 |
|
33 private: |
|
34 void ConstructL(TAny* aConstructionParameters); |
|
35 |
|
36 void GetPositionInfoL(TPositionInfoBase& aPosInfo); |
|
37 void GetBasicPositionInfoL(TPositionInfoBase& aPosInfo); |
|
38 |
|
39 public: // from CPositioner |
|
40 |
|
41 void NotifyPositionUpdate(TPositionInfoBase& aPosInfo, |
|
42 TRequestStatus& aStatus); |
|
43 void CancelNotifyPositionUpdate(); |
|
44 |
|
45 private: // member variables |
|
46 |
|
47 TRequestStatus* iStatusPtr; |
|
48 |
|
49 }; |
|
50 |
|
51 |
|
52 |
|
53 |
|
54 #endif |
|
55 |
|
56 // End of file |