commsfwutils/commsbufs/mbufgobblerlayer/src/ecom_impl.cpp
branchRCL_3
changeset 84 486e9e9c45a7
parent 76 576874e13a2c
child 85 7c25be0307fe
equal deleted inserted replaced
76:576874e13a2c 84:486e9e9c45a7
     1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // ECOM implementation for the MbufGobbler layer provider factories
       
    15 //
       
    16 
       
    17 /**
       
    18  @file
       
    19  @internalComponent
       
    20  */
       
    21 
       
    22 #include <ecom/implementationproxy.h>
       
    23 #include <ecom/ecom.h>
       
    24 
       
    25 #include "mbufgobblerflowfactory.h"
       
    26 #include "mbufgobblerconnproviderfactory.h"
       
    27 #include "mbufgobblersubconnproviderfactory.h"
       
    28 #include "mbufgobblermetaconnproviderfactory.h"
       
    29 #include "mbufgobblertiermanagerfactory.h"
       
    30 
       
    31 //
       
    32 // ECOM Implementation
       
    33 //
       
    34 
       
    35 const TImplementationProxy ImplementationTable[] =
       
    36 	{
       
    37 	IMPLEMENTATION_PROXY_ENTRY(CMbufGobblerTierManagerFactory::iUid, CMbufGobblerTierManagerFactory::NewL),
       
    38 	IMPLEMENTATION_PROXY_ENTRY(CMbufGobblerMetaConnectionProviderFactory::iUid, CMbufGobblerMetaConnectionProviderFactory::NewL),
       
    39 	IMPLEMENTATION_PROXY_ENTRY(CMbufGobblerConnProviderFactory::iUid, CMbufGobblerConnProviderFactory::NewL),
       
    40 	IMPLEMENTATION_PROXY_ENTRY(CMbufGobblerSubconnProviderFactory::iUid, CMbufGobblerSubconnProviderFactory::NewL),
       
    41 	IMPLEMENTATION_PROXY_ENTRY(CMbufGobblerFlowFactory::EUid, CMbufGobblerFlowFactory::NewL),
       
    42 	};
       
    43 
       
    44 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
       
    45 	{
       
    46 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
       
    47 	return ImplementationTable;
       
    48 	}
       
    49