diff -r 8e7494275d3a -r 4f0867e42d62 contentctrl_plat/oma_ds_presync_plugin_api/inc/CPreSyncPlugin.inl --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/contentctrl_plat/oma_ds_presync_plugin_api/inc/CPreSyncPlugin.inl Wed Sep 01 12:30:02 2010 +0100 @@ -0,0 +1,49 @@ +/* +* Copyright (c) 2008-2009 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: ECom search interface definition +* +*/ + +// Interface's (abstract base class's) destructor + +inline CPreSyncPlugin::~CPreSyncPlugin() + { + + REComSession::DestroyedImplementation(iDtor_ID_Key); + } + +inline CPreSyncPlugin* +CPreSyncPlugin::NewL(TUid aImplementationUid) + { + TAny* ptr = REComSession::CreateImplementationL( + aImplementationUid,_FOFF(CPreSyncPlugin,iDtor_ID_Key)); + // The type of TAny* ptr should be CPreSyncPlugin. + return REINTERPRET_CAST(CPreSyncPlugin*, ptr); + } + +inline CPreSyncPlugin* CPreSyncPlugin::NewL(const TDesC8& aParam) + { + // Define options, how the default resolver will find appropriate + // implementation. + TEComResolverParams resolverParams; + resolverParams.SetDataType(aParam); + resolverParams.SetWildcardMatch(ETrue); // Allow wildcard matching + + TAny* ptr = REComSession::CreateImplementationL( + KPreSyncPluginInterfaceUid, + _FOFF(CPreSyncPlugin,iDtor_ID_Key),resolverParams); + + // The type of TAny* ptr should be CTmoPhonebookSyncInterfaceDefinitionDlg. + return REINTERPRET_CAST(CPreSyncPlugin*, ptr); + }