equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2007-2008 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 proxy table for AiPlugin |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <e32std.h> |
|
20 #include <ecom/implementationproxy.h> |
|
21 #include "wsfaiplugin.h" |
|
22 #include "wsfaipluginuids.hrh" |
|
23 |
|
24 // Provide a key pair value table for ECOM. |
|
25 // Used to identify the correct construction function for |
|
26 // the requested interface. |
|
27 const TImplementationProxy ImplementationTable[] = |
|
28 { |
|
29 IMPLEMENTATION_PROXY_ENTRY( |
|
30 AI_UID_ECOM_IMPLEMENTATION_CONTENTPUBLISHER_WIZARDPLUGIN, |
|
31 CWsfAiPlugin::NewL ) |
|
32 }; |
|
33 |
|
34 |
|
35 // -------------------------------------------------------------------------- |
|
36 // ImplementationGroupProxy |
|
37 // Return an instance of the proxy table. |
|
38 // -------------------------------------------------------------------------- |
|
39 // |
|
40 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
41 TInt& aTableCount ) |
|
42 { |
|
43 aTableCount = sizeof( ImplementationTable ) / sizeof( |
|
44 TImplementationProxy ); |
|
45 return ImplementationTable; |
|
46 } |
|
47 |
|
48 // End of File |
|