|
1 /* |
|
2 * Copyright (c) 2005 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: Printing Framework DM Adapter. |
|
15 * |
|
16 */ |
|
17 |
|
18 // INCLUDE |
|
19 #include <implementationproxy.h> |
|
20 #include "DevEncAdapter.h" |
|
21 #include "DevEncUids.hrh" |
|
22 |
|
23 // ---------------------------------------------------------------------------- |
|
24 // ImplementationTable |
|
25 // Ecom plug-in implementation table |
|
26 // Status : Draft |
|
27 // ---------------------------------------------------------------------------- |
|
28 // |
|
29 const TImplementationProxy ImplementationTable[] = |
|
30 { |
|
31 #ifdef __EABI__ |
|
32 IMPLEMENTATION_PROXY_ENTRY( KDevEncOmaDmPluginImplUid, CDevEncAdapter::NewL ) |
|
33 #else // !__EABI__ |
|
34 { { KDevEncOmaDmPluginImplUid }, CDevEncAdapter::NewL } |
|
35 #endif // __EABI__ |
|
36 }; |
|
37 |
|
38 // ---------------------------------------------------------------------------- |
|
39 // ImplementationGroupProxy |
|
40 // Instance of implementation proxy |
|
41 // (exported) |
|
42 // Status : Draft |
|
43 // ---------------------------------------------------------------------------- |
|
44 // |
|
45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) |
|
46 { |
|
47 aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
48 |
|
49 return ImplementationTable; |
|
50 } |
|
51 |
|
52 // End Of File |
|
53 |
|
54 |