equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007 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 file for nsmldmvccadapter |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #include <e32base.h> |
|
21 #include <ecom/implementationproxy.h> |
|
22 #include "nsmldmvccadapter.h" |
|
23 |
|
24 // ============================ MEMBER FUNCTIONS ============================= |
|
25 |
|
26 const TImplementationProxy ImplementationTable[] = |
|
27 { |
|
28 IMPLEMENTATION_PROXY_ENTRY( 0x2000E5BE, CNSmlDmVCCAdapter::NewL ) |
|
29 }; |
|
30 |
|
31 // Function used to return an instance of the proxy table. |
|
32 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
33 TInt& aTableCount ) |
|
34 { |
|
35 //RDebug::Print(_L("SYNCML UMA ADAPTER - ImplementationGroupProxy")); |
|
36 aTableCount = sizeof( ImplementationTable ) |
|
37 / sizeof( TImplementationProxy ); |
|
38 return ImplementationTable; |
|
39 } |
|
40 |
|
41 // End of File |