Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
27 #include <ecom/ecom.h>
29 // -----------------------------------------------------------------------------
30 // CFeatureInfoPlugin::~CFeatureInfoPlugin
31 // Destructor informs ECom that implementation has been destroyed.
32 // -----------------------------------------------------------------------------
34 inline CFeatureInfoPlugin::~CFeatureInfoPlugin()
36 REComSession::DestroyedImplementation( iDestructorIDKey );
39 // -----------------------------------------------------------------------------
40 // CFeatureInfoPlugin::NewL
41 // Factory method to create implementation. Implementation is found via ECom.
42 // -----------------------------------------------------------------------------
44 inline CFeatureInfoPlugin* CFeatureInfoPlugin::NewL(
45 TUid aImplementationUid,
46 MFeatureInfoPluginCallback& aResponseCallback )
48 TAny* interface = REComSession::CreateImplementationL(
50 _FOFF( CFeatureInfoPlugin, iDestructorIDKey ) );
52 CFeatureInfoPlugin* service = reinterpret_cast<CFeatureInfoPlugin*>( interface );
54 // Set response callback pointer
55 service->iResponseCallback = &aResponseCallback;