XDMEngine/XdmProvisioning/src/xdmprovadaptergroupproxy.cpp
branchGCC_SURGE
changeset 28 d9861ae9169c
parent 23 77cb48a03620
parent 26 04ca1926b01c
equal deleted inserted replaced
23:77cb48a03620 28:d9861ae9169c
     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:    Table of plugins for ECom
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include <implementationproxy.h>
       
    24 
       
    25 #include "xdmprovadapter.h"
       
    26 #include "xdmprovuid.h"
       
    27 
       
    28 
       
    29 // CONSTANTS
       
    30 const TImplementationProxy KImplementationTable[] = 
       
    31     {
       
    32 #ifdef __EABI__    
       
    33     IMPLEMENTATION_PROXY_ENTRY( KXdmProvAdapterImplementation, CXdmProvAdapter::NewL )
       
    34 #else
       
    35     { { KXdmProvAdapterImplementation }, CXdmProvAdapter::NewL },
       
    36 #endif
       
    37     };
       
    38 
       
    39 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    40 
       
    41 // -----------------------------------------------------------------------------
       
    42 // ImplementationGroupProxy
       
    43 // -----------------------------------------------------------------------------
       
    44 //
       
    45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    46     {
       
    47     aTableCount = sizeof( KImplementationTable ) / sizeof( TImplementationProxy );
       
    48     return KImplementationTable;
       
    49     }
       
    50 
       
    51