imagehandlinglib/Src/IHLProcessorFactory.cpp
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 
       
    20 // INCLUDE FILES
       
    21 #include <IHLProcessorFactory.h>
       
    22 #include "CIHLScaler.h"
       
    23 #include "CIHLBitmapProcessor.h"
       
    24 
       
    25 // ============================ STATIC FUNCTIONS ===============================
       
    26 
       
    27 // -----------------------------------------------------------------------------
       
    28 // IHLProcessorFactory::CreateBitmapProcessorL
       
    29 // -----------------------------------------------------------------------------
       
    30 //
       
    31 EXPORT_C MIHLBitmapProcessor* IHLProcessorFactory::CreateBitmapProcessorL( const TUint32 aOptions )
       
    32 	{
       
    33 	return CIHLBitmapProcessor::NewL( aOptions );
       
    34 	}
       
    35 
       
    36 //  End of File