internetradio2.0/irpresetplugin/src/irpresetpluginproxy.cpp
changeset 14 896e9dbc5f19
child 15 065198191975
equal deleted inserted replaced
12:608f67c22514 14:896e9dbc5f19
       
     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:
       
    15 *
       
    16 */
       
    17 
       
    18 #include <implementationproxy.h>
       
    19 
       
    20 #include "irpresetimpl.h"
       
    21 
       
    22 // The implementation proxy table that lists all interfaces and 
       
    23 // their implementations contained within this plugin.
       
    24 const TImplementationProxy KIRPresetPluginImplementationTable[] =
       
    25     {
       
    26     IMPLEMENTATION_PROXY_ENTRY( 0x10009DC1, CIRPresetImpl:: NewL) 
       
    27     };
       
    28 
       
    29 
       
    30 // ---------------------------------------------------------------------------
       
    31 // Entry point for ECOM plugins.
       
    32 // ---------------------------------------------------------------------------
       
    33 //
       
    34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    35     {
       
    36     aTableCount = sizeof( KIRPresetPluginImplementationTable ) / 
       
    37                   sizeof(TImplementationProxy);
       
    38     return KIRPresetPluginImplementationTable;
       
    39     }