locationmgmt/locmonitor/ConversionApi/ConversionPluginApi/inc/lbslocinfoconverterplugincommon.h
equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 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: Base class for all the class representing |
|
15 * location informations. |
|
16 * |
|
17 */ |
|
18 |
|
19 /** |
|
20 @file |
|
21 @publishedPartner |
|
22 @prototype |
|
23 */ |
|
24 |
|
25 #ifndef LBS_LOCATION_CONVERTER_PLUGIN_COMMON_H |
|
26 #define LBS_LOCATION_CONVERTER_PLUGIN_COMMON_H |
|
27 |
|
28 #include <e32std.h> |
|
29 |
|
30 |
|
31 /** |
|
32 The generic base for classes that store conversion Plugin Interface |
|
33 related information |
|
34 */ |
|
35 class TLbsLocInfoConverterPluginClassTypeBase |
|
36 { |
|
37 public: |
|
38 IMPORT_C TUint32 ClassType() const; |
|
39 IMPORT_C TUint ClassSize() const; |
|
40 |
|
41 protected: |
|
42 IMPORT_C TLbsLocInfoConverterPluginClassTypeBase(); |
|
43 |
|
44 protected: |
|
45 /** The type of the derived class */ |
|
46 TUint32 iClassType; |
|
47 /** The size of the derived class */ |
|
48 TUint iClassSize; |
|
49 }; |
|
50 |
|
51 |
|
52 #endif // LBS_LOCATION_CONVERTER_PLUGIN_COMMON_H |
|