|
1 /* |
|
2 * Copyright (c) 2005-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 CPOSITIONEREXTENSION_H |
|
21 #define CPOSITIONEREXTENSION_H |
|
22 |
|
23 #include <e32base.h> |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class MPosStatusObserver; |
|
27 class MPosParameterObserver; |
|
28 class CPositionerRegistry; |
|
29 class CPosPsyExtension; |
|
30 |
|
31 // CLASS DECLARATION |
|
32 |
|
33 /** |
|
34 * Class used to extend the CPositionerExtension member data list. Holds |
|
35 * subsession specific information and services. |
|
36 */ |
|
37 class CPositionerExtension : public CBase |
|
38 { |
|
39 public: // Constructors and destructor |
|
40 static CPositionerExtension* NewL( TUid aImplementationUid, MPosStatusObserver* aStatusObserver, MPosParameterObserver* aParamObserver); |
|
41 ~CPositionerExtension(); |
|
42 |
|
43 private: |
|
44 void ConstructL(TUid aImplementationUid, MPosStatusObserver* aStatusObserver); |
|
45 CPositionerExtension(MPosParameterObserver* aParamObserver); |
|
46 CPositionerExtension( const CPositionerExtension& ); |
|
47 CPositionerExtension& operator= ( const CPositionerExtension& ); |
|
48 |
|
49 public: // Data |
|
50 MPosParameterObserver* iParamObserver; |
|
51 CPosPsyExtension* iPsyExtension; |
|
52 |
|
53 private: |
|
54 CPositionerRegistry* iRegistry; |
|
55 |
|
56 }; |
|
57 |
|
58 #endif // CPOSITIONEREXTENSION_H |
|
59 |
|
60 // End of File |