equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: This class is only used internally in CPosLmMultiDbSearch. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include <EPos_CPosLandmarkDatabase.h> |
|
22 #include <EPos_CPosLandmarkSearch.h> |
|
23 #include <EPos_CPosLmDisplayData.h> |
|
24 #include "EPos_CPosLmMultiDbSearchItem.h" |
|
25 |
|
26 // CONSTANTS |
|
27 |
|
28 // ================= MEMBER FUNCTIONS ======================= |
|
29 |
|
30 // ----------------------------------------------------------------------------- |
|
31 // CPosLmMultiDbSearchItem::CPosLmMultiDbSearchItem |
|
32 // C++ default constructor can NOT contain any code, that |
|
33 // might leave. |
|
34 // ----------------------------------------------------------------------------- |
|
35 // |
|
36 CPosLmMultiDbSearchItem::CPosLmMultiDbSearchItem(HBufC* aDbUriPtr) |
|
37 : iDbUriPtr(aDbUriPtr) |
|
38 { |
|
39 } |
|
40 |
|
41 // Destructor |
|
42 CPosLmMultiDbSearchItem::~CPosLmMultiDbSearchItem() |
|
43 { |
|
44 delete iSearcher; |
|
45 delete iDisplayData; |
|
46 delete iDb; |
|
47 delete iDbUriPtr; |
|
48 } |
|
49 |
|
50 // End of File |