author | Billy Gibson <Billy.Gibson@nokia.com> |
Fri, 09 Apr 2010 17:19:12 +0100 | |
branch | GeoConversion |
changeset 16 | 90477588756a |
permissions | -rw-r--r-- |
16
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
1 |
/* |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
2 |
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
3 |
* All rights reserved. |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
4 |
* This component and the accompanying materials are made available |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
5 |
* under the terms of "Eclipse Public License v1.0" |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
6 |
* which accompanies this distribution, and is available |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
8 |
* |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
9 |
* Initial Contributors: |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
10 |
* Nokia Corporation - initial contribution. |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
11 |
* |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
12 |
* Contributors: |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
13 |
* |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
14 |
* Description: Base class for all the class representing |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
15 |
* location informations. |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
16 |
* |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
17 |
*/ |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
18 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
19 |
/** |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
20 |
@file |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
21 |
@publishedPartner |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
22 |
@prototype |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
23 |
*/ |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
24 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
25 |
#ifndef LBS_LOCATION_CONVERTER_PLUGIN_COMMON_H |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
26 |
#define LBS_LOCATION_CONVERTER_PLUGIN_COMMON_H |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
27 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
28 |
#include <e32std.h> |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
29 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
30 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
31 |
/** |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
32 |
The generic base for classes that store conversion Plugin Interface |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
33 |
related information |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
34 |
*/ |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
35 |
class TLbsLocInfoConverterPluginClassTypeBase |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
36 |
{ |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
37 |
public: |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
38 |
IMPORT_C TUint32 ClassType() const; |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
39 |
IMPORT_C TUint ClassSize() const; |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
40 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
41 |
protected: |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
42 |
IMPORT_C TLbsLocInfoConverterPluginClassTypeBase(); |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
43 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
44 |
protected: |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
45 |
/** The type of the derived class */ |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
46 |
TUint32 iClassType; |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
47 |
/** The size of the derived class */ |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
48 |
TUint iClassSize; |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
49 |
}; |
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
50 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
51 |
|
90477588756a
Draft APIs for Converting Cell and/or WLAN information to a latitudes and longitude
Billy Gibson <Billy.Gibson@nokia.com>
parents:
diff
changeset
|
52 |
#endif // LBS_LOCATION_CONVERTER_PLUGIN_COMMON_H |