simpledatamodeladapter/simpleimplugin/src/simpleimpluginimplementationproxy.cpp
branchRCL_3
changeset 35 fbd2e7cec7ef
parent 0 c8caa15ef882
equal deleted inserted replaced
34:2669f8761a99 35:fbd2e7cec7ef
       
     1 /*
       
     2 * Copyright (c) 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:  ECom implementation proxy.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <e32std.h>
       
    20 #include <implementationproxy.h>
       
    21 
       
    22 #include "simpleimfeatures.h"
       
    23 
       
    24 // LOCAL CONSTANTS AND MACROS
       
    25 const TImplementationProxy ImplementationTable[] = 
       
    26     {
       
    27     IMPLEMENTATION_PROXY_ENTRY( 0x20022D59, CSimpleImFeatures::NewL )
       
    28     };
       
    29 
       
    30 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    31 
       
    32 // -----------------------------------------------------------------------------
       
    33 // ImplementationGroupProxy
       
    34 // Function to return the implementation proxy table
       
    35 // -----------------------------------------------------------------------------
       
    36 //
       
    37 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( 
       
    38     TInt& aTableCount )
       
    39     {
       
    40     aTableCount =
       
    41         sizeof( ImplementationTable ) / sizeof( TImplementationProxy );
       
    42     
       
    43     return ImplementationTable;
       
    44     }
       
    45 
       
    46 // End of file