multimediacommsengine/tsrc/testdriver/siptester/ttcnresolverplugin2/src/dllmain.cpp
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: Implementation |
|
15 * |
|
16 */ |
|
17 |
|
18 #include <e32std.h> |
|
19 #include <ecom/ImplementationProxy.h> |
|
20 #include "ttcn2gresolverplugin.h" |
|
21 |
|
22 // Map the interface UIDs to implementation factory functions |
|
23 const TImplementationProxy Implementations[] = |
|
24 { |
|
25 IMPLEMENTATION_PROXY_ENTRY( KTTCN2GResolverPluginUID, |
|
26 CTTCN2GResolverPlugin::NewL ), |
|
27 }; |
|
28 |
|
29 // ----------------------------------------------------------------------------- |
|
30 // ImplementationGroupProxy |
|
31 // |
|
32 // Exported proxy for instantiation method resolution |
|
33 // ----------------------------------------------------------------------------- |
|
34 // |
|
35 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aCount ) |
|
36 { |
|
37 aCount = sizeof( Implementations ) / sizeof( TImplementationProxy ); |
|
38 return Implementations; |
|
39 } |
|
40 |
|
41 |