engine/collectionframework/datasource/plugins/glxdatasourcemde/src/glxdatasourcemdeproxy.cpp
changeset 71 27f2d7aec52a
parent 69 45459746d5e8
child 72 0a8e959402e5
equal deleted inserted replaced
69:45459746d5e8 71:27f2d7aec52a
     1 /*
       
     2 * Copyright (c) 2006 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  * @internal reviewed 11/07/2007 by M Byrne
       
    23  */
       
    24 
       
    25 #include <implementationproxy.h>
       
    26 #include "glxdatasourcemde.h"
       
    27 #include "glxdatasourcemde.hrh"
       
    28 
       
    29 // ----------------------------------------------------------------------------
       
    30 // The list of implementations
       
    31 // ----------------------------------------------------------------------------
       
    32 //
       
    33 const TImplementationProxy ImplementationTable[] =
       
    34     { IMPLEMENTATION_PROXY_ENTRY(KGlxDataSourceMdeImplementationUid,
       
    35                                     CGlxDataSourceMde::NewL) };
       
    36 
       
    37 // ----------------------------------------------------------------------------
       
    38 // The proxy of implementations
       
    39 // ----------------------------------------------------------------------------
       
    40 //
       
    41 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    42     {
       
    43     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    44     return ImplementationTable;
       
    45     }
       
    46 
       
    47 // End of File