os/mm/devsound/devsoundrefplugin/src/controller/audio/MmfAudioToneControllerFactory.cpp
Update contrib.
2 * Copyright (c) 2003 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.
19 #include "MmfAudioToneController.hrh"
20 #include "MmfAudioToneController.h"
23 // __________________________________________________________________________
24 // Exported proxy for instantiation method resolution
25 // Define the interface UIDs
26 // move to another module to allow custom audio controller for testing
29 Table of implementations to be returned to th ECom system
32 const TImplementationProxy ImplementationTable[] =
34 IMPLEMENTATION_PROXY_ENTRY(KMmfUidControllerAudioTone, CMMFAudioToneController::NewL)
38 Used by the ECom system to obtain a list of implementations available in the library
41 @param aTableCount will be initialized to the number of entries
42 @return TImplementationProxy* a pointer to a list of available implementations
45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
47 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
49 return ImplementationTable;