equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2007 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: ECOM implementation proxy for sipmxresolver |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include <e32base.h> |
|
22 #include "sipmxresolver.h" |
|
23 #include <e32svr.h> |
|
24 #include "sipmxresolveruids.h" |
|
25 |
|
26 // Exported proxy for instantiation method resolution |
|
27 // Use the interface implementation UID and Implementation factory method |
|
28 // as a pair for ECom instantiation. |
|
29 const TImplementationProxy Implementations[] = |
|
30 { |
|
31 // Remove PCLint warning "Suspicious cast" |
|
32 //lint -e611 |
|
33 IMPLEMENTATION_PROXY_ENTRY( KSIPMXRESOLVERIMPLUID, CSipMXResolver::NewL ) |
|
34 //lint +e611 |
|
35 }; |
|
36 |
|
37 // ========================== OTHER EXPORTED FUNCTIONS ========================= |
|
38 |
|
39 // ----------------------------------------------------------------------------- |
|
40 // ImplementationGroupProxy |
|
41 // Function to return the implementation proxy table |
|
42 // ----------------------------------------------------------------------------- |
|
43 // |
|
44 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) |
|
45 { |
|
46 aTableCount = sizeof( Implementations ) / sizeof( TImplementationProxy ); |
|
47 return Implementations; |
|
48 } |
|
49 |
|