realtimenetprots/rtp/cfrtp/src/ecom_impl.cpp
changeset 0 307788aac0a8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/realtimenetprots/rtp/cfrtp/src/ecom_impl.cpp	Tue Feb 02 01:03:15 2010 +0200
@@ -0,0 +1,52 @@
+// 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;
+   }
+