photosgallery/viewframework/plugins/listviewplugin/src/glxlistviewpluginproxy.cpp
changeset 0 4e91876724a2
child 35 420f6808bf21
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 
       
    24 #include "glxmainlistviewplugin.h"
       
    25 #include "glxalbumlistviewplugin.h"
       
    26 #include "glxmonthlistviewplugin.h"
       
    27 
       
    28 #include "glxlistviewplugin.hrh"
       
    29 
       
    30 // ======== MEMBER FUNCTIONS ========
       
    31 
       
    32 // ---------------------------------------------------------------------------
       
    33 // The list of implementations
       
    34 // ---------------------------------------------------------------------------
       
    35 //
       
    36 const TImplementationProxy ImplementationTable[] = 
       
    37     {
       
    38     IMPLEMENTATION_PROXY_ENTRY(
       
    39             KGlxMainListViewImplementationUid, CGlxMainListViewPlugin::NewL),
       
    40 
       
    41     IMPLEMENTATION_PROXY_ENTRY(
       
    42             KGlxAlbumListViewImplementationUid, CGlxAlbumListViewPlugin::NewL),
       
    43 
       
    44     IMPLEMENTATION_PROXY_ENTRY(
       
    45             KGlxMonthListViewImplementationUid, CGlxMonthListViewPlugin::NewL)
       
    46     };
       
    47 
       
    48 // ---------------------------------------------------------------------------
       
    49 // The proxy of implementations
       
    50 // ---------------------------------------------------------------------------
       
    51 //
       
    52 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    53     TInt& aTableCount )
       
    54     {
       
    55     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    56     return ImplementationTable;
       
    57     }
       
    58 
       
    59 // End of File