mmlibs/mmfw/tsrc/mmfintegrationtest/mmfmediaclienttestplugin/src/mmfmediaclientextdisplaytestfactory.cpp
changeset 4 9d4397b300d1
equal deleted inserted replaced
1:fcaf4606ba4e 4:9d4397b300d1
       
     1 /*
       
     2 * Copyright (c) 2010 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:
       
    15 *
       
    16 */
       
    17 
       
    18 #include <ecom/implementationproxy.h> 
       
    19 #include "mmfmediaclientextdisplaytestprovider.h"
       
    20 #include "mmfmediaclientextdisplaytestprovider.hrh"
       
    21 
       
    22 // __________________________________________________________________________
       
    23 // Exported proxy for instantiation method resolution
       
    24 // Define the interface UIDs
       
    25 
       
    26 /**
       
    27 *
       
    28 * ImplementationTable
       
    29 *
       
    30 */
       
    31 const TImplementationProxy ImplementationTable[] =
       
    32 	{
       
    33 	IMPLEMENTATION_PROXY_ENTRY(KMediaDisplayExtTestProviderImplUid, CExtDisplayTestConnectionProvider::NewL)
       
    34 	};
       
    35 
       
    36 /**
       
    37 * ImplementationGroupProxy
       
    38 * @param aTableCount
       
    39 * @return "TImplementationProxy*"
       
    40 */
       
    41 
       
    42 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    43 	{
       
    44 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    45 	return ImplementationTable;
       
    46 	}
       
    47