supl/locationomasuplprotocolhandler/protocolhandlerver1/src/epos_omaprotocolhandlermain1.cpp
changeset 0 667063e416a2
equal deleted inserted replaced
-1:000000000000 0:667063e416a2
       
     1 /*
       
     2 * Copyright (c) 2002-2005 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:    Holds OMA SUPL implementation table for SUPL Protocol handler
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <e32std.h>
       
    21 #include <ecom/implementationproxy.h>
       
    22 
       
    23 #include "epos_comasuplprotocolmanager1.h"
       
    24 
       
    25 // Map the interface implementation UIDs to implementation factory functions
       
    26 const TImplementationProxy ImplementationTable[] =
       
    27     {
       
    28     
       
    29    	#ifdef __EABI__ 
       
    30 		IMPLEMENTATION_PROXY_ENTRY(0x2002678D, COMASUPLProtocolManager1::NewL) 
       
    31 	#else
       
    32         { { 0x2002678D},  COMASUPLProtocolManager1::NewL}
       
    33 	#endif        
       
    34 
       
    35         
       
    36     };
       
    37 
       
    38 // Exported proxy for instantiation method resolution.
       
    39 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(
       
    40     TInt& aTableCount)
       
    41     {
       
    42     aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    43     return ImplementationTable;
       
    44     }