uiacceltk/hitchcock/plugins/alftranseffect/alftranseffectplugin/src/alftfxplugincommon.cpp
changeset 0 15bf7259bb7c
equal deleted inserted replaced
-1:000000000000 0:15bf7259bb7c
       
     1 /*
       
     2 * Copyright (c) 2006 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:   ECom table handling for all plugins in this dll.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <e32base.h>
       
    22 #include <bitdev.h>
       
    23 #include <implementationproxy.h>
       
    24 #include <alf/AlfTransEffectPlugin.h>
       
    25 
       
    26 #include "alftfxplugincommon.hrh"
       
    27 #include "alfsystemeffects.h"
       
    28 #include "alfgfxeffects.h"
       
    29 
       
    30 
       
    31 // ============================ ECOM FUNCTIONS ===============================
       
    32 
       
    33 // -----------------------------------------------------------------------------
       
    34 // ImplementationTable
       
    35 // Defines the plug-in implementation table for ECom.
       
    36 // -----------------------------------------------------------------------------
       
    37 //
       
    38 const TImplementationProxy ImplementationTable[] = 
       
    39     {
       
    40 	IMPLEMENTATION_PROXY_ENTRY( KAlfGfxImplUidValue, CAlfGfxEffects::NewFxPluginL ),
       
    41 	IMPLEMENTATION_PROXY_ENTRY( KAlfTfxSystemEffectsImpUidValue, CAlfSystemEffects::NewExtensionL )
       
    42     };
       
    43 
       
    44 
       
    45 // -----------------------------------------------------------------------------
       
    46 // ImplementationGroupProxy
       
    47 // Returns the plug-in implementation table to ECom.
       
    48 // -----------------------------------------------------------------------------
       
    49 //
       
    50 EXPORT_C const TImplementationProxy* ImplementationGroupProxy ( TInt& aTableCount )
       
    51 	{
       
    52 	aTableCount = sizeof (ImplementationTable) / sizeof (TImplementationProxy);
       
    53 	return ImplementationTable;
       
    54 	}
       
    55 
       
    56 //  End of File