|
1 /* |
|
2 * Copyright (c) 2008-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: Standard proxy of the ECOM plugin |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #include <implementationproxy.h> |
|
21 #include "glxcollectionplugincamera.h" |
|
22 #include "glxcollectionplugincamera.hrh" |
|
23 |
|
24 #if (!defined IMPLEMENTATION_PROXY_ENTRY) |
|
25 typedef TAny* TProxyNewLPtr; |
|
26 #define IMPLEMENTATION_PROXY_ENTRY(aUid,aFuncPtr) |
|
27 {{aUid},(TProxyNewLPtr)(aFuncPtr)} |
|
28 #endif |
|
29 |
|
30 /** |
|
31 * @internal reviewed 14/06/2007 by Alex Birkett |
|
32 */ |
|
33 // ---------------------------------------------------------------------------- |
|
34 // The list of implementations |
|
35 // ---------------------------------------------------------------------------- |
|
36 // |
|
37 const TImplementationProxy ImplementationTable[] = |
|
38 { IMPLEMENTATION_PROXY_ENTRY(KGlxCollectionPluginCameraImplementationUid, CGlxCollectionPluginCamera::NewL) }; |
|
39 |
|
40 // ---------------------------------------------------------------------------- |
|
41 // The proxy of implementations |
|
42 // ---------------------------------------------------------------------------- |
|
43 // |
|
44 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
45 TInt& aTableCount) |
|
46 { |
|
47 aTableCount=sizeof(ImplementationTable)/sizeof(TImplementationProxy); |
|
48 return ImplementationTable; |
|
49 } |
|
50 |
|
51 |
|
52 // End of File |