realtimenetprots/rtp/cfrtp/src/ecom_impl.cpp
author hgs
Fri, 09 Jul 2010 13:15:39 +0300
changeset 33 b8a7e07b2677
parent 0 307788aac0a8
permissions -rw-r--r--
201027

// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// ecom gateway functions ( Rtp SCPR ,Rtp Flows and Rtp params)
// 
//

/**
 @file
 @internalComponent
*/


#include <ecom/implementationproxy.h>
#include <ecom/ecom.h>

#include "rtpflowfactory.h"

//RTP SCPR factories
#include "rtpscprfactory.h"
#include "rtp_subconparams.h"

//
// ECOM Implementation
//

/*  RTP ECOM Plugin */

const TImplementationProxy ImplementationTable[] =
   {
   IMPLEMENTATION_PROXY_ENTRY(CRtpSubConnectionProviderFactory::iUid, CRtpSubConnectionProviderFactory::NewL),
   IMPLEMENTATION_PROXY_ENTRY(CSubConRTPParamFactory::iUid, CSubConRTPParamFactory::NewL),	  
   IMPLEMENTATION_PROXY_ENTRY(CRtpFlowFactory::iUid , CRtpFlowFactory::NewL),
   };
   

EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   {
   aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   return ImplementationTable;
   }