photosgallery/viewframework/plugins/tagsbrowserviewplugin/src/glxtagsbrowserviewpluginproxy.cpp
changeset 0 4e91876724a2
equal deleted inserted replaced
-1:000000000000 0:4e91876724a2
       
     1 /*
       
     2 * Copyright (c) 2008-2009 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 // INCLUDE FILES
       
    22 #include <ecom/implementationproxy.h>
       
    23 #include "glxtagsbrowserviewplugin.hrh"
       
    24 #include "glxtagsbrowserviewplugin.h"
       
    25 
       
    26 #if ( !defined IMPLEMENTATION_PROXY_ENTRY )
       
    27   typedef TAny *TProxyNewLPtr;
       
    28   #define IMPLEMENTATION_PROXY_ENTRY( aUid,aFuncPtr ) { { aUid }, (
       
    29     TProxyNewLPtr )( aFuncPtr ) }
       
    30 #endif 
       
    31 
       
    32 // ======== MEMBER FUNCTIONS ========
       
    33 
       
    34 // ---------------------------------------------------------------------------
       
    35 // The list of implementations
       
    36 // ---------------------------------------------------------------------------
       
    37 //
       
    38 const TImplementationProxy ImplementationTable[] = 
       
    39 {
       
    40   IMPLEMENTATION_PROXY_ENTRY(KGlxTagsBrowserPluginImplementationUid,
       
    41     CGlxTagsBrowserViewPlugin::NewL), 
       
    42 
       
    43 };
       
    44 
       
    45 // ---------------------------------------------------------------------------
       
    46 // The proxy of implementations
       
    47 // ---------------------------------------------------------------------------
       
    48 //
       
    49 EXPORT_C const TImplementationProxy *ImplementationGroupProxy(TInt &aTableCount)
       
    50 {
       
    51   aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    52   return ImplementationTable;
       
    53 }
       
    54 
       
    55 // End of File