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: |
|
15 * Plugged Display ASY Ecom proxy declarations. |
|
16 * |
|
17 */ |
|
18 |
|
19 // SYSTEM INCLUDES |
|
20 #include <ecom/implementationproxy.h> |
|
21 |
|
22 // USER INCLUDES |
|
23 #include "pdasymainservice.h" |
|
24 #include "pdasycmdhandler.h" |
|
25 #include "pdasyconst.hrh" |
|
26 |
|
27 // ======== MEMBER FUNCTIONS ======== |
|
28 |
|
29 const TImplementationProxy ImplementationTable[] = |
|
30 { |
|
31 IMPLEMENTATION_PROXY_ENTRY( |
|
32 PD_ASY_MAIN_SERVICE_IMPL_UID, |
|
33 CPDAsyMainService::NewL ), |
|
34 IMPLEMENTATION_PROXY_ENTRY( |
|
35 PD_ASY_CMD_HANDLER_IMPL_UID, |
|
36 CPDAsyCmdHandler::NewL ), |
|
37 }; |
|
38 |
|
39 // Exported proxy for instantiation method resolution. |
|
40 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) |
|
41 { |
|
42 aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
43 return ImplementationTable; |
|
44 } |
|
45 |
|
46 // End of file |