devicediagnostics/diagplugins/diagearpieceplugin/src/diagaudiopluginimplementationtable.cpp
changeset 18 7d11f9a6646f
parent 4 75a71fdb4c92
child 21 c707676bf59f
equal deleted inserted replaced
4:75a71fdb4c92 18:7d11f9a6646f
     1 /*
       
     2 * Copyright (c) 2007 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:  ECOM proxy table for DiagTimerTestPlugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDES
       
    20 #include "diagaudioplugin.hrh"
       
    21 #include "diagaudioplugin.h"
       
    22 #include <implementationproxy.h>
       
    23 
       
    24 
       
    25 // CONSTANTS
       
    26 const TImplementationProxy KDiagAudioPluginImplementationTable[] =
       
    27 	{
       
    28 	IMPLEMENTATION_PROXY_ENTRY( DIAG_AUDIO_PLUGIN_UID, CDiagAudioPlugin::NewL )
       
    29 	};
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // ImplementationGroupProxy
       
    33 //
       
    34 // Gate/factory function
       
    35 // ---------------------------------------------------------------------------
       
    36 //
       
    37 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    38                                                   TInt& aTableCount )
       
    39 	{
       
    40 	aTableCount = sizeof( KDiagAudioPluginImplementationTable )
       
    41         / sizeof( TImplementationProxy );
       
    42 	return KDiagAudioPluginImplementationTable;
       
    43 	}
       
    44 
       
    45 // End of File
       
    46