webservices/wshttpchanneltransportplugin/src/senhttpchanneltransportpluginproxy.cpp
changeset 0 62f9d29f7211
equal deleted inserted replaced
-1:000000000000 0:62f9d29f7211
       
     1 /*
       
     2 * Copyright (c) 2002-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:       
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 // INCLUDE FILES
       
    26 #include <e32std.h>
       
    27 #include <ecom/implementationproxy.h>
       
    28 #include "senhttpchanneltransportplugin.h"
       
    29 
       
    30 #ifndef RD_SEN_COMPILE_SIS_PACKAGE_FILES
       
    31     const TInt32 KHttpChannelTransportPluginUid = 0x10274C74;
       
    32 #else
       
    33     const TInt32 KHttpChannelTransportPluginUid = 0x101F974A;
       
    34 #endif
       
    35 // Provides a key value pair table, this is used to identify
       
    36 // the correct construction function for the requested interface.
       
    37 const TImplementationProxy ImplementationTable[] =
       
    38     {
       
    39 #ifdef IMPLEMENTATION_PROXY_ENTRY
       
    40         IMPLEMENTATION_PROXY_ENTRY(KHttpChannelTransportPluginUid,  CSenHttpChannelTransportPlugin::NewL)
       
    41 #else
       
    42         {{KHttpChannelTransportPluginUid},  CSenHttpChannelTransportPlugin::NewL}
       
    43 #endif
       
    44     };
       
    45 
       
    46 // Function used to return an instance of the proxy table.
       
    47 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    48     {
       
    49     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    50     return ImplementationTable;
       
    51     }
       
    52 
       
    53 // End of File
       
    54