internetradio2.0/presetpluginsrc/irpresetpluginproxy.cpp
changeset 0 09774dfdd46b
equal deleted inserted replaced
-1:000000000000 0:09774dfdd46b
       
     1 /*
       
     2 * Copyright (c) 2006-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:  ?Description
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <implementationproxy.h>
       
    20 
       
    21 #include "irpresetimpl.h"
       
    22 
       
    23 // The implementation proxy table that lists all interfaces and their implementations contained within this plugin.
       
    24 const TImplementationProxy KIRPresetPluginImplementationTable[] =
       
    25     {
       
    26     IMPLEMENTATION_PROXY_ENTRY( 0x10009DC1, CIRPresetImpl:: NewL) 
       
    27     };
       
    28 
       
    29 // ======== LOCAL FUNCTIONS ========
       
    30 
       
    31 // ---------------------------------------------------------------------------
       
    32 // Entry point for ECOM plugins.
       
    33 // ---------------------------------------------------------------------------
       
    34 //
       
    35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( 
       
    36 	TInt& aTableCount )
       
    37     {
       
    38     aTableCount = sizeof( KIRPresetPluginImplementationTable ) / 
       
    39     	sizeof( TImplementationProxy );
       
    40     return KIRPresetPluginImplementationTable;
       
    41     }
       
    42 
       
    43