internetradio2.0/irrfsplugin/src/irrfspluginproxy.cpp
changeset 14 896e9dbc5f19
child 15 065198191975
equal deleted inserted replaced
12:608f67c22514 14:896e9dbc5f19
       
     1 /*
       
     2 * Copyright (c) 2007-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:  Implementation of the RFS ECOM plugin proxy
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <implementationproxy.h>
       
    20 
       
    21 #include "irrfsplugin.h"
       
    22 
       
    23 // The implementation proxy table that lists all interfaces and their implementations contained within this plugin.
       
    24 const TImplementationProxy KIRRfsPluginImplementationTable[] =
       
    25     {
       
    26     /*lint -save -e611 (Warning -- Suspicious cast)*/
       
    27     IMPLEMENTATION_PROXY_ENTRY( 0x2000B4DD, CIRRfsPlugin::NewL )
       
    28     /*lint -restore*/
       
    29     };
       
    30 
       
    31 // ======== LOCAL FUNCTIONS ========
       
    32 
       
    33 // ======== MEMBER FUNCTIONS ========
       
    34 
       
    35 // ======== GLOBAL FUNCTIONS ========
       
    36 
       
    37 // ---------------------------------------------------------------------------
       
    38 // Entry point for ECOM plugins.
       
    39 // ---------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    42     {
       
    43     aTableCount = sizeof( KIRRfsPluginImplementationTable ) / sizeof( TImplementationProxy );
       
    44     return KIRRfsPluginImplementationTable;
       
    45     }
       
    46