linklayerprotocols/tundriver/src/ecom_impl.cpp
branchRCL_3
changeset 63 425d8f4f7fa5
equal deleted inserted replaced
58:8d540f55e491 63:425d8f4f7fa5
       
     1 /**
       
     2 *   Copyright (c) 2010 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 *   ECOM implementation for the Tunnel Driver protocol provider factories
       
    16 * 
       
    17 *
       
    18 */
       
    19 /**
       
    20  @file ecom_impl.cpp
       
    21  @internalTechnology
       
    22 */
       
    23 
       
    24 
       
    25 #include <ecom/implementationproxy.h>
       
    26 #include <ecom/ecom.h>
       
    27 
       
    28 #include "tundriverflow.h"
       
    29 #include "tundrivermcprfactory.h"
       
    30 
       
    31 //
       
    32 // ECOM Implementation
       
    33 //
       
    34 
       
    35 const TImplementationProxy ImplementationTable[] =
       
    36 	{   
       
    37 	IMPLEMENTATION_PROXY_ENTRY(KTunDriverFlowImplementationUid, CTunDriverSubConnectionFlowFactory::NewL),
       
    38 	IMPLEMENTATION_PROXY_ENTRY(CTunDriverMetaConnectionProviderFactory::iUid, CTunDriverMetaConnectionProviderFactory::NewL),
       
    39    	};
       
    40 
       
    41 
       
    42 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    43    {
       
    44    aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    45    return ImplementationTable;
       
    46    }
       
    47