diff -r a3a1ae9acec6 -r da5135c61bad emailcontacts/remotecontactlookup/src/cpbkxremotecontactlookupenvimpl.cpp --- a/emailcontacts/remotecontactlookup/src/cpbkxremotecontactlookupenvimpl.cpp Mon Mar 15 12:39:10 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,124 +0,0 @@ -/* -* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: Implementation of the class CPbkxRemoteContactLookupEnvImpl. -* -*/ - - -#include "emailtrace.h" -#include -#include "cpbkxremotecontactlookupenvimpl.h" -#include "cpbkxrclsearchengine.h" -#include "cpbkxrclsettingsengine.h" - -const TImplementationProxy ImplementationTable[] = - { - IMPLEMENTATION_PROXY_ENTRY( - KPbkxRemoteContactLookupServiceImplImpUid, - CPbkxRemoteContactLookupEnvImpl::NewL ) - }; - -// ======== MEMBER FUNCTIONS ======== - -// --------------------------------------------------------------------------- -// ?description_if_needed -// --------------------------------------------------------------------------- -// -CPbkxRemoteContactLookupEnvImpl::CPbkxRemoteContactLookupEnvImpl() - { - FUNC_LOG; - } - -// --------------------------------------------------------------------------- -// ?description_if_needed -// --------------------------------------------------------------------------- -// -void CPbkxRemoteContactLookupEnvImpl::ConstructL() - { - FUNC_LOG; - } - -// --------------------------------------------------------------------------- -// ?description_if_needed -// --------------------------------------------------------------------------- -// -CPbkxRemoteContactLookupEnvImpl* CPbkxRemoteContactLookupEnvImpl::NewL() - { - FUNC_LOG; - CPbkxRemoteContactLookupEnvImpl* self = new (ELeave) CPbkxRemoteContactLookupEnvImpl(); - CleanupStack::PushL( self ); - self->ConstructL(); - CleanupStack::Pop( self ); - return self; - } - -// --------------------------------------------------------------------------- -// ?description_if_needed -// --------------------------------------------------------------------------- -// -CPbkxRemoteContactLookupEnvImpl::~CPbkxRemoteContactLookupEnvImpl() - { - FUNC_LOG; - delete iServiceUi; - delete iSettingsUi; - } - -// --------------------------------------------------------------------------- -// From class MPbkxRemoteContactLookupUi -// ?implementation_description -// --------------------------------------------------------------------------- -// -MPbkxRemoteContactLookupServiceUi* CPbkxRemoteContactLookupEnvImpl::ServiceUiL() - { - FUNC_LOG; - - if( iServiceUi == NULL ) - { - iServiceUi = CPbkxRclSearchEngine::NewL(); - } - - return static_cast(iServiceUi); - } - -// --------------------------------------------------------------------------- -// From class MPbkxRemoteContactLookupUi -// ?implementation_description -// --------------------------------------------------------------------------- -// -MPbkxRemoteContactLookupSettingsUi* CPbkxRemoteContactLookupEnvImpl::SettingsUiL() - { - FUNC_LOG; - - if( iSettingsUi == NULL ) - { - iSettingsUi = CPbkxRclSettingsEngine::NewL(); - } - - return static_cast(iSettingsUi); - } - -// ======== GLOBAL FUNCTIONS ======== - -// --------------------------------------------------------------------------- -// ?implementation_description -// --------------------------------------------------------------------------- -// - -EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) - { - FUNC_LOG; - aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); - return ImplementationTable; - } -