simpleengine/presenceprovisioning/src/presenceprovgroupproxy.cpp
changeset 0 c8caa15ef882
equal deleted inserted replaced
-1:000000000000 0:c8caa15ef882
       
     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 <e32std.h>
       
    24 #include <implementationproxy.h>
       
    25 #include "presenceprovadapter.h"
       
    26 #include "presenceprovuid.h"
       
    27 
       
    28 
       
    29 // CONSTANTS
       
    30 const TImplementationProxy KImplementationTable[] = 
       
    31     {
       
    32 #ifdef __EABI__    
       
    33     IMPLEMENTATION_PROXY_ENTRY( KPresProvAdapterImplementation, CPresProvAdapter::NewL )
       
    34 #else
       
    35     { { KPresProvAdapterImplementation }, CPresProvAdapter::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