os/mm/devsoundextensions/ciextnfactoryplugins/ciextnclientplugin/inc/cifactoryintfc.h
Update contrib.
2 * Copyright (c) 2002-2008 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.
14 * Description: Interface for plugin classes implementing custom interface
21 #ifndef CIFACTORYINTFC_H
22 #define CIFACTORYINTFC_H
25 #include <mmf/common/mcustomcommand.h>
28 * Mixin class for plugins creating Custom Interface objects.
30 * Instance of plugins implementing this interface will be used by
31 * CCIExtnClientPlugin.
40 * Called by framework after plugin construction.
41 * The passed UID must be retained for the lifetime of the plugin and, on a
42 * subsequent call to Close(), REComSession::DestroyedImplementation() must
43 * be called by the plugin, using the stored UID.
44 * The implementation should return KErrNone upon successful initialization.
45 * Otherwise the plugin will be immediately destroyed.
47 * @param aCustomCommand Reference to implementation of MCustomCommand.
48 * @param aDestructorKey The Uid returned by
49 * REComSession::CreateImplementationL() or similar.
51 virtual TInt Initialize( MCustomCommand& aCustomCommand, TUid aDestructorKey ) = 0;
54 * Returns implementation UID of this plugin.
56 * @return aUid implementation UID of the plugin
58 virtual TUid ImplementationUid() = 0;
61 * Called by the framework to obtain a pointer to the Custom Interface.
63 * Note that ownership of the interface will be transferred to the caller.
65 * @param aUid UID of the required interface.
66 * @param aInterface Used to return pointer to the interface. Must be set
67 * to NULL if no matching interface.
68 * @return an error code KErrNotFound if requested custom inteface is not
69 * supported by this plugin. KErrNone when custom interface object is
70 * successfully created and returned. Any other error code returned
71 * implies that custom interface is supported but the plugin was
72 * unable to instantiate it when requested.
74 virtual TInt CreateInterface( TUid aUid, TAny*& aInterface ) = 0;
77 * Called by the framework when plugin is to be destroyed.
78 * Equivalent to destructor. Called to destroy plugin.
80 virtual void Close() = 0;
83 #endif // CIFACTORYINTFC_H