musichomescreen/musicplayeractionhandlerplugin/src/proxy.cpp
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2008-2008 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:  Music Player Action Handler Plugin Implementation Proxy
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <implementationproxy.h>
       
    21 #include "musicplayeractionhandleruids.hrh"
       
    22 #include "musicplayeractionhandler.h"
       
    23 
       
    24 // ---------------------------------------------------------------------------
       
    25 // Map the interface UIDs to implementation factory functions
       
    26 // ---------------------------------------------------------------------------
       
    27 //
       
    28 const TImplementationProxy ImplementationTable[] =
       
    29     {
       
    30     IMPLEMENTATION_PROXY_ENTRY( KMusicPlayerActionHandlerUID,
       
    31             CMusicPlayerActionHandler::NewL )
       
    32     };
       
    33 
       
    34 // ---------------------------------------------------------------------------
       
    35 // Exported proxy for instantiation method resolution
       
    36 // ---------------------------------------------------------------------------
       
    37 //
       
    38 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    39         TInt& aTableCount )
       
    40     {
       
    41     aTableCount =
       
    42         sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    43 
       
    44     return ImplementationTable;
       
    45     }
       
    46 
       
    47 //  End of File