imagehandling_plat/image_handling_library_api/inc/IHLProcessorFactory.h
changeset 54 48dd0f169f0d
parent 42 2e2a89493e2b
equal deleted inserted replaced
42:2e2a89493e2b 54:48dd0f169f0d
     1 /*
       
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Static factory class for creating processors.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef IHLPROCESSORFACTORY_H
       
    20 #define IHLPROCESSORFACTORY_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <e32std.h>
       
    24 
       
    25 // FORWARD DECLARATION
       
    26 class MIHLBitmapProcessor;
       
    27 
       
    28 // CLASS DECLARATION
       
    29 /**
       
    30 *  IHLProcessorFactory
       
    31 *
       
    32 *  Static factory class for creating processors.
       
    33 *  @lib IHL.lib
       
    34 *  @since 3.0
       
    35 */
       
    36 class IHLProcessorFactory
       
    37     {
       
    38     public:
       
    39 
       
    40         /**
       
    41         * Create new MIHLBitmapProcessor instance.
       
    42         * @since 3.0
       
    43 		* @param aOptions Special options for bitmap processing. Refer to MIHLBitmapProcessor header.
       
    44 		* @return New MIHLBitmapProcessor instance.
       
    45 		*/
       
    46         IMPORT_C static MIHLBitmapProcessor* CreateBitmapProcessorL( const TUint32 aOptions = 0 );
       
    47 	};
       
    48 
       
    49 #endif // IHLPROCESSORFACTORY_H
       
    50 
       
    51 // End of File