epoc32/include/icl/imagetransformpluginext.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 2 2fe1408b6811
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This is the extension to the plugin API for the Image Transform framework
    15 // 
    16 //
    17 
    18 /**
    19  @file
    20  @publishedAll
    21  @released
    22 */
    23 
    24 #ifndef __IMAGETRANSFORMPLUGINEXT_H__
    25 #define __IMAGETRANSFORMPLUGINEXT_H__
    26 
    27 #include <e32base.h>
    28 
    29 /**
    30 This class should be derived by a plugin writer wishing to extend the client 
    31 API defined in CImageTransform
    32 
    33 @publishedAll
    34 @released
    35 */
    36 class CImageTransformPluginExtension : public CBase
    37 	{
    38 public:
    39 	
    40 	/**
    41 	Get a Uid by which a plugin extension can be identified.
    42 
    43 	@return A Uid unique to the specific plugin extension
    44 	*/
    45 	IMPORT_C virtual const TUid Uid() const = 0;
    46 private:
    47 	// Future proofing
    48 	IMPORT_C virtual void ReservedVirtual1();
    49 	IMPORT_C virtual void ReservedVirtual2();
    50 	IMPORT_C virtual void ReservedVirtual3();
    51 	IMPORT_C virtual void ReservedVirtual4();
    52 	};
    53 
    54 #endif // __IMAGETRANSFORMPLUGINEXT_H__