accessoryservices/accessoryremotecontrol/src/remconkeyeventconverter/RemConKeyEventConverterMain.cpp
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002-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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include <ecom/implementationproxy.h> |
|
21 #include "RemConKeyEventConverter.h" |
|
22 #include "RemConDebug.h" |
|
23 |
|
24 // CONSTANTS |
|
25 // Define the private interface UIDs |
|
26 const TImplementationProxy ImplementationTable[] = |
|
27 { |
|
28 IMPLEMENTATION_PROXY_ENTRY(0x10205035, CRemConKeyEventConverter::NewL), |
|
29 }; |
|
30 |
|
31 // ========================== OTHER EXPORTED FUNCTIONS ========================= |
|
32 |
|
33 // ----------------------------------------------------------------------------- |
|
34 // ImplementationGroupProxy (needed by ECom FW) |
|
35 // Returns: const TImplementationProxy*: Pointer to implementation table. |
|
36 // ----------------------------------------------------------------------------- |
|
37 // |
|
38 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
39 TInt& aTableCount) |
|
40 { |
|
41 COM_TRACE_1( "[AccFW:RemConConverter] TImplementationProxy* ImplementationGroupProxy(0x%x)", aTableCount ); |
|
42 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); |
|
43 |
|
44 return ImplementationTable; |
|
45 } |
|
46 |
|
47 // |
|
48 // End of file |