omadm/lawmo/lawmoplugins/mediaplugin/src/mediapluginproxy.cpp
branchRCL_3
changeset 70 5d5344402085
parent 65 450d1facd418
child 73 5042b6604f6f
equal deleted inserted replaced
65:450d1facd418 70:5d5344402085
     1 /*
       
     2 * Copyright (c) 2009 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 "Symbian Foundation License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Media plug-in for LAWMO
       
    15 *
       
    16 */
       
    17 
       
    18 #include <e32std.h>
       
    19 #include <implementationproxy.h>
       
    20 
       
    21 #include "mediaplugin.h"
       
    22 
       
    23 
       
    24 // Map the interface UIDs to implementation factory functions
       
    25 const TImplementationProxy ImplementationTable[] = 
       
    26 	{
       
    27 		IMPLEMENTATION_PROXY_ENTRY(0x2002EA29,	CLAWMOMediaPlugin::NewL),
       
    28 	};
       
    29 
       
    30 // Exported proxy for instantiation method resolution
       
    31 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    32 	{
       
    33 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    34 
       
    35 	return ImplementationTable;
       
    36 	}
       
    37