homescreenplugins/videoahlplugin/src/videoahpluginimplementationtable.cpp
branchRCL_3
changeset 13 112a725ff2c2
parent 11 5294c000a26d
child 14 8970fbd719ec
equal deleted inserted replaced
11:5294c000a26d 13:112a725ff2c2
     1 /*
       
     2 * Copyright (c) 2008 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 the License "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:  plugin implementation proxy definition for actionhandler plugin*
       
    15 */
       
    16 
       
    17 
       
    18 #include <e32std.h>
       
    19 #include <implementationproxy.h>
       
    20 
       
    21 #include "videoactionhandler.h"
       
    22 
       
    23 // ----------------------------------------------------------------------------
       
    24 // Map the interface UIDs to implementation factory functions
       
    25 // ----------------------------------------------------------------------------
       
    26 //
       
    27 const TImplementationProxy ImplementationTable[] = 
       
    28 	{
       
    29 	IMPLEMENTATION_PROXY_ENTRY( 0x20016B9F, CVideoActionHandler::NewL ),
       
    30 	};
       
    31 
       
    32 // ----------------------------------------------------------------------------
       
    33 // Exported proxy for instantiation method resolution
       
    34 // ----------------------------------------------------------------------------
       
    35 //
       
    36 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( 
       
    37     TInt& aTableCount )
       
    38 	{
       
    39 	aTableCount = 
       
    40         sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    41 
       
    42 	return ImplementationTable;
       
    43 	}
       
    44 
       
    45 // end of file