1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This is the extension to the plugin API for the Image Display framework
18 #ifndef __IMAGEDISPLAYPLUGINEXT_H__
19 #define __IMAGEDISPLAYPLUGINEXT_H__
24 This class should be derived by a plugin writer wishing to extend the client
25 API defined in CImageDisplay
30 class MImageDisplayPluginExtension
35 Get a Uid by which a plugin extension can be identified.
37 @return A Uid unique to the specific plugin extension
39 virtual const TUid Uid() const = 0;
41 Can be called to indicate that extension is no longer needed
43 virtual void Release() = 0;
46 #endif // __IMAGEDISPLAYPLUGINEXT_H__