os/mm/devsound/devsoundrefplugin/src/plugin/audio/Gsm610/gsm610Proxy.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 // Standard includes
    17 #include <e32std.h>
    18 #include <mmf/server/mmfswcodecwrapper.h>
    19 
    20 #include <ecom/implementationproxy.h>
    21 #include "GSM610.H"
    22 #include <ecom/ecom.h>
    23 #include <e32def.h>
    24 #include <mmf/plugin/mmfhwdeviceimplementationuids.hrh>
    25 
    26 
    27 //
    28 // Exported proxy for instantiation method resolution
    29 // Define the interface UIDs
    30 //
    31 
    32 const TImplementationProxy ImplementationTable[] = 
    33 	{
    34 		IMPLEMENTATION_PROXY_ENTRY(KMmfUidHwDeviceGSM610ToPCM16,	CMmfGsm610ToPcm16HwDevice::NewL),
    35 		IMPLEMENTATION_PROXY_ENTRY(KMmfUidHwDevicePCM16ToGSM610,	CMmfPcm16ToGsm610HwDevice::NewL), 
    36 	};
    37 
    38 
    39 //
    40 // ImplementationGroupProxy
    41 //
    42 //
    43 
    44 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    45 	{
    46 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
    47 
    48 	return ImplementationTable;
    49 	}
    50 
    51