1 /* |
|
2 * Copyright (c) 2010 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: Address comparison source implementation for maptile |
|
15 * service. |
|
16 * |
|
17 */ |
|
18 |
|
19 #include "mylocationlogger.h" |
|
20 #include "addresscomparision.h" |
|
21 |
|
22 // ----------------------------------------------------------------------------- |
|
23 // CAddressComparision::NewL() |
|
24 // ----------------------------------------------------------------------------- |
|
25 // |
|
26 CAddressComparision* CAddressComparision::NewL() |
|
27 { |
|
28 CAddressComparision* self = new (ELeave) CAddressComparision(); |
|
29 return self; |
|
30 } |
|
31 // ----------------------------------------------------------------------------- |
|
32 // CAddressComparision::CAddressComparision() |
|
33 // ----------------------------------------------------------------------------- |
|
34 // |
|
35 CAddressComparision::CAddressComparision() |
|
36 { |
|
37 |
|
38 } |
|
39 // ----------------------------------------------------------------------------- |
|
40 // CAddressComparision::IsAddressChangedL() |
|
41 // Need to enhance the functionality for address comparison |
|
42 // ----------------------------------------------------------------------------- |
|
43 // |
|
44 |
|
45 TBool CAddressComparision::IsAddressChangedL(const CPosLandmark& /*aLandmarks*/, |
|
46 const TInt32 /*aCntId*/, const TUidSourceType/* aAddressType*/) |
|
47 { |
|
48 __TRACE_CALLSTACK; |
|
49 |
|
50 |
|
51 TBool addressChanged = ETrue; |
|
52 return addressChanged;//addressChanged; |
|
53 } |
|
54 |
|
55 //end of file |
|