sl@0
|
1 |
// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
|
sl@0
|
17 |
|
sl@0
|
18 |
// INCLUDE FILES
|
sl@0
|
19 |
#include "finditemengine.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
EXPORT_C CFindItemEngine* CFindItemEngine::NewL( const TDesC& aText, const CFindItemEngine::TFindItemSearchCase aSearchCase )
|
sl@0
|
22 |
{ return reinterpret_cast<CFindItemEngine*>(CTulAddressStringTokenizer::NewL(aText, aSearchCase)); }
|
sl@0
|
23 |
|
sl@0
|
24 |
EXPORT_C CFindItemEngine* CFindItemEngine::NewL( const TDesC& aText, const CFindItemEngine::TFindItemSearchCase aSearchCase, const TInt aMinNumbers )
|
sl@0
|
25 |
{ return reinterpret_cast<CFindItemEngine*>(CTulAddressStringTokenizer::NewL(aText, aSearchCase, aMinNumbers)); }
|
sl@0
|
26 |
|
sl@0
|
27 |
EXPORT_C CFindItemEngine::~CFindItemEngine()
|
sl@0
|
28 |
{ delete reinterpret_cast<CTulAddressStringTokenizer*>(this); }
|
sl@0
|
29 |
|
sl@0
|
30 |
EXPORT_C TBool CFindItemEngine::Item( CFindItemEngine::SFoundItem& aItem )
|
sl@0
|
31 |
{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->Item(reinterpret_cast<CTulAddressStringTokenizer::SFoundItem&>(aItem)); }
|
sl@0
|
32 |
|
sl@0
|
33 |
EXPORT_C TBool CFindItemEngine::NextItem( CFindItemEngine::SFoundItem& aItem )
|
sl@0
|
34 |
{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->NextItem(reinterpret_cast<CTulAddressStringTokenizer::SFoundItem&>(aItem)); }
|
sl@0
|
35 |
|
sl@0
|
36 |
EXPORT_C TBool CFindItemEngine::PrevItem( CFindItemEngine::SFoundItem& aItem )
|
sl@0
|
37 |
{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->PrevItem(reinterpret_cast<CTulAddressStringTokenizer::SFoundItem&>(aItem)); }
|
sl@0
|
38 |
|
sl@0
|
39 |
EXPORT_C const CArrayFixFlat<CFindItemEngine::SFoundItem>* CFindItemEngine::ItemArray() const
|
sl@0
|
40 |
{ return reinterpret_cast<const CArrayFixFlat<CFindItemEngine::SFoundItem>*>(reinterpret_cast<const CTulAddressStringTokenizer*>(this)->ItemArray()); }
|
sl@0
|
41 |
|
sl@0
|
42 |
EXPORT_C TInt CFindItemEngine::Position() const
|
sl@0
|
43 |
{ return reinterpret_cast<const CTulAddressStringTokenizer*>(this)->Position(); }
|
sl@0
|
44 |
|
sl@0
|
45 |
EXPORT_C void CFindItemEngine::ResetPosition()
|
sl@0
|
46 |
{ reinterpret_cast<CTulAddressStringTokenizer*>(this)->ResetPosition(); }
|
sl@0
|
47 |
|
sl@0
|
48 |
EXPORT_C TInt CFindItemEngine::ItemCount() const
|
sl@0
|
49 |
{ return reinterpret_cast<const CTulAddressStringTokenizer*>(this)->ItemCount(); }
|
sl@0
|
50 |
|
sl@0
|
51 |
EXPORT_C TInt CFindItemEngine::DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase)
|
sl@0
|
52 |
{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->DoNewSearchL(aText, aSearchCase); }
|
sl@0
|
53 |
|
sl@0
|
54 |
EXPORT_C TInt CFindItemEngine::DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase, TInt aMinNumbers )
|
sl@0
|
55 |
{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->DoNewSearchL(aText, aSearchCase, aMinNumbers ); }
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
// End of File
|