|
1 // Copyright (c) 2007-2009 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 SIP connection and sub-connection provider factories |
|
15 // SIP TierManagerFactory class definition |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalComponent |
|
22 */ |
|
23 |
|
24 |
|
25 #include <ecom/implementationproxy.h> |
|
26 #include "sipscprfactory.h" |
|
27 #include "sipcprfactory.h" |
|
28 #include "sipmcprfactory.h" |
|
29 #include "siptiermanagerfactory.h" |
|
30 #include "SIP_subconparams.h" |
|
31 #include "SIP_subconevents.h" |
|
32 |
|
33 using namespace ESock; |
|
34 |
|
35 /** |
|
36 Data required for instantiating ECOM Plugin |
|
37 */ |
|
38 |
|
39 const TImplementationProxy ImplementationTable[] = |
|
40 { |
|
41 IMPLEMENTATION_PROXY_ENTRY(CSipConnectionProviderFactory::iUid, CSipConnectionProviderFactory::NewL), |
|
42 IMPLEMENTATION_PROXY_ENTRY(CSipMetaConnectionProviderFactory::iUid, CSipMetaConnectionProviderFactory::NewL), |
|
43 IMPLEMENTATION_PROXY_ENTRY(CSipSubConnectionProviderFactory::iUid, CSipSubConnectionProviderFactory::NewL), |
|
44 IMPLEMENTATION_PROXY_ENTRY(CSipTierManagerFactory::iUid, CSipTierManagerFactory::NewL), |
|
45 IMPLEMENTATION_PROXY_ENTRY(KSubConSIPParametersUid, CSIPSubConnExtensionParamsFactory::NewL), |
|
46 IMPLEMENTATION_PROXY_ENTRY(KSubConSIPEventsUid, CSIPSubConnExtensionEventsFactory::NewL) |
|
47 }; |
|
48 |
|
49 /** |
|
50 ECOM Implementation Factory |
|
51 */ |
|
52 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) |
|
53 { |
|
54 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); |
|
55 return ImplementationTable; |
|
56 } |
|
57 |