datasourceadaptation/gpsdatasourceadaptation/pospluginapi/inc/EPos_MPositionerStatus.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006-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 * Name : EPos_MPositionerStatus.h |
|
16 * Part of : Mobile Location Framework / Positioning Plugin FW |
|
17 * Interface : Positioning Plug-in API |
|
18 * Interface used by positioners to report positioner status |
|
19 * Version : %version: 2 % |
|
20 * |
|
21 */ |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 /** |
|
27 @file |
|
28 @publishedPartner |
|
29 @released |
|
30 */ |
|
31 |
|
32 #ifndef MPOSITIONERSTATUS_H |
|
33 #define MPOSITIONERSTATUS_H |
|
34 |
|
35 class TPositionModuleStatus; |
|
36 |
|
37 /** |
|
38 * This is an interface through which the PSY can report its current status. |
|
39 */ |
|
40 class MPositionerStatus |
|
41 { |
|
42 public: |
|
43 |
|
44 /** |
|
45 * Reports that the positioner status has changed. |
|
46 * A PSY should not report EDeviceDisabled, so that status will be |
|
47 * ignored. |
|
48 * |
|
49 * @param [in] aStatus The new status. |
|
50 */ |
|
51 virtual void ReportStatus( const TPositionModuleStatus& aStatus ) = 0; |
|
52 |
|
53 }; |
|
54 |
|
55 #endif // MPOSITIONERSTATUS_H |