|
1 /* |
|
2 * Copyright (c) 2008 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 the License "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 plugin implementation proxy* |
|
15 */ |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include <ecom/implementationproxy.h> |
|
22 |
|
23 #include "vcxnsscheduleplugin.h" |
|
24 #include "vcxnsscheduleplugin.hrh" |
|
25 |
|
26 // ======== MEMBER FUNCTIONS ======== |
|
27 |
|
28 // --------------------------------------------------------------------------- |
|
29 // The list of implementations |
|
30 // --------------------------------------------------------------------------- |
|
31 // |
|
32 const TImplementationProxy ImplementationTable[] = |
|
33 { |
|
34 IMPLEMENTATION_PROXY_ENTRY( |
|
35 KVcxNsSchedulePluginImplementationId, |
|
36 CVcxNsSchedulePlugin::NewL ) |
|
37 }; |
|
38 |
|
39 // --------------------------------------------------------------------------- |
|
40 // The proxy of implementations |
|
41 // --------------------------------------------------------------------------- |
|
42 // |
|
43 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
44 TInt& aTableCount ) |
|
45 { |
|
46 aTableCount = |
|
47 sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
48 return ImplementationTable; |
|
49 } |