photosgallery/slideshow/view/src/shwslideshowviewpluginproxy.cpp
changeset 0 4e91876724a2
equal deleted inserted replaced
-1:000000000000 0:4e91876724a2
       
     1 /*
       
     2 * Copyright (c) 2007-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:    Standard proxy of the ECOM plugin
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include <glxlog.h>
       
    24 #include <glxtracer.h>
       
    25 #include <ecom/implementationproxy.h>
       
    26 #include <shwslideshowviewplugin.hrh>
       
    27 #include "shwslideshowviewplugin.h"
       
    28 
       
    29 #if ( !defined IMPLEMENTATION_PROXY_ENTRY )
       
    30 typedef TAny* TProxyNewLPtr;
       
    31 #define IMPLEMENTATION_PROXY_ENTRY( aUid,aFuncPtr ) { { aUid }, ( TProxyNewLPtr )( aFuncPtr ) }
       
    32 #endif
       
    33 
       
    34 
       
    35 // ======== MEMBER FUNCTIONS ========
       
    36 
       
    37 // ---------------------------------------------------------------------------
       
    38 // The list of implementations
       
    39 // ---------------------------------------------------------------------------
       
    40 //
       
    41 const TImplementationProxy ImplementationTable[] = 
       
    42     { 
       
    43     IMPLEMENTATION_PROXY_ENTRY( KShwSlideshowViewImplementationId, 
       
    44                                 CShwSlideshowViewPlugin::NewL ) 
       
    45     };
       
    46 
       
    47 // ---------------------------------------------------------------------------
       
    48 // The proxy of implementations
       
    49 // ---------------------------------------------------------------------------
       
    50 //
       
    51 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    52     {
       
    53     TRACER(" TImplementationProxy* ImplementationGroupProxy");
       
    54     GLX_LOG_INFO(" TImplementationProxy* ImplementationGroupProxy" );
       
    55     aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    56     return ImplementationTable;
       
    57     }
       
    58 
       
    59 // End of File