os/mm/mmlibs/mmfw/src/Plugin/Controller/Audio/MmfAudioControllerFactory.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2002 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 
    19 #include <mmfcontrollerimplementationuids.hrh>
    20 #include "MmfAudioController.h"
    21 
    22 
    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
    27 
    28 /**
    29 *
    30 * ImplementationTable
    31 *
    32 */
    33 const TImplementationProxy ImplementationTable[] =
    34 	{
    35 		IMPLEMENTATION_PROXY_ENTRY(KMmfUidControllerAudio,	CMMFAudioController::NewL)
    36 	};
    37 
    38 /**
    39 * ImplementationGroupProxy
    40 * @param aTableCount
    41 * @returns "TImplementationProxy*"
    42 */
    43 
    44 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
    45 	{
    46 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
    47 
    48 	return ImplementationTable;
    49 	}
    50