os/ossrv/genericservices/s60compatibilityheaders/commonengine/src/finditemengine.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericservices/s60compatibilityheaders/commonengine/src/finditemengine.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,58 @@
     1.4 +// Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +
    1.20 +
    1.21 +// INCLUDE FILES
    1.22 +#include "finditemengine.h"
    1.23 +
    1.24 +EXPORT_C CFindItemEngine* CFindItemEngine::NewL( const TDesC& aText,  const CFindItemEngine::TFindItemSearchCase aSearchCase )
    1.25 +	{ return reinterpret_cast<CFindItemEngine*>(CTulAddressStringTokenizer::NewL(aText, aSearchCase)); }
    1.26 +
    1.27 +EXPORT_C CFindItemEngine* CFindItemEngine::NewL( const TDesC& aText,  const CFindItemEngine::TFindItemSearchCase aSearchCase, const TInt aMinNumbers )
    1.28 +	{ return reinterpret_cast<CFindItemEngine*>(CTulAddressStringTokenizer::NewL(aText, aSearchCase, aMinNumbers)); }
    1.29 +
    1.30 +EXPORT_C CFindItemEngine::~CFindItemEngine()
    1.31 +	{ delete reinterpret_cast<CTulAddressStringTokenizer*>(this); }
    1.32 +
    1.33 +EXPORT_C TBool CFindItemEngine::Item( CFindItemEngine::SFoundItem& aItem )
    1.34 +	{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->Item(reinterpret_cast<CTulAddressStringTokenizer::SFoundItem&>(aItem)); }
    1.35 +
    1.36 +EXPORT_C TBool CFindItemEngine::NextItem( CFindItemEngine::SFoundItem& aItem )
    1.37 +	{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->NextItem(reinterpret_cast<CTulAddressStringTokenizer::SFoundItem&>(aItem)); }
    1.38 +
    1.39 +EXPORT_C TBool CFindItemEngine::PrevItem( CFindItemEngine::SFoundItem& aItem )
    1.40 +	{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->PrevItem(reinterpret_cast<CTulAddressStringTokenizer::SFoundItem&>(aItem)); }
    1.41 +
    1.42 +EXPORT_C const CArrayFixFlat<CFindItemEngine::SFoundItem>* CFindItemEngine::ItemArray() const
    1.43 +	{ return reinterpret_cast<const CArrayFixFlat<CFindItemEngine::SFoundItem>*>(reinterpret_cast<const CTulAddressStringTokenizer*>(this)->ItemArray()); }
    1.44 +
    1.45 +EXPORT_C TInt CFindItemEngine::Position() const
    1.46 +	{ return reinterpret_cast<const CTulAddressStringTokenizer*>(this)->Position(); }
    1.47 +
    1.48 +EXPORT_C void CFindItemEngine::ResetPosition()
    1.49 +	{ reinterpret_cast<CTulAddressStringTokenizer*>(this)->ResetPosition(); }
    1.50 +
    1.51 +EXPORT_C TInt CFindItemEngine::ItemCount() const
    1.52 +	{ return reinterpret_cast<const CTulAddressStringTokenizer*>(this)->ItemCount(); }
    1.53 +
    1.54 +EXPORT_C TInt CFindItemEngine::DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase)
    1.55 +	{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->DoNewSearchL(aText, aSearchCase); }
    1.56 +
    1.57 +EXPORT_C TInt CFindItemEngine::DoNewSearchL( const TDesC& aText, CFindItemEngine::TFindItemSearchCase aSearchCase,  TInt aMinNumbers )
    1.58 +	{ return reinterpret_cast<CTulAddressStringTokenizer*>(this)->DoNewSearchL(aText, aSearchCase, aMinNumbers ); }
    1.59 +
    1.60 +
    1.61 +//  End of File