os/mm/devsound/devsoundrefplugin/src/codec/sbcencoder/SBCCodecImplementationProxy.cpp
Update contrib.
2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #include <ecom/implementationproxy.h>
21 #include <mmf/plugin/mmfsbccodecimplementationuids.hrh>
23 #include "SBCEncoder.h"
26 Exported proxy for instantiation method resolution
27 Define the interface UIDs
29 const TImplementationProxy implementationTable[] =
31 IMPLEMENTATION_PROXY_ENTRY(KMmfUidCodecPCM16ToSBC, CSBCEncoder::NewL)
35 Used by the ECom system to obtain a list of implementations available in the library
38 @param aTableCount will be initialized to the number of entries
39 @return TImplementationProxy* a pointer to a list of available implementations
41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
43 aTableCount = sizeof(implementationTable) / sizeof(TImplementationProxy);
44 return implementationTable;