equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include "sipimresolver.h" |
|
20 #include "sipimresolveruids.hrh" |
|
21 |
|
22 // LOCAL CONSTANTS AND MACROS |
|
23 const TImplementationProxy ImplementationTable[] = |
|
24 { |
|
25 IMPLEMENTATION_PROXY_ENTRY( KImplUidSipImResolver, CSipImResolver::NewL ) |
|
26 }; |
|
27 |
|
28 // ========================== OTHER EXPORTED FUNCTIONS ========================= |
|
29 |
|
30 // ----------------------------------------------------------------------------- |
|
31 // ImplementationGroupProxy |
|
32 // Function to return the implementation proxy table |
|
33 // ----------------------------------------------------------------------------- |
|
34 // |
|
35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
36 TInt& aTableCount ) |
|
37 { |
|
38 aTableCount = |
|
39 sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
40 |
|
41 return ImplementationTable; |
|
42 } |
|
43 |