|
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: A plug-in for disabling/enabling tacticons. |
|
15 * Part of: Tacticon Server. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include <e32std.h> |
|
22 #include <ecom/implementationproxy.h> |
|
23 |
|
24 #include "tacticonactionplugin.h" |
|
25 #include "tacticonactionpluginconst.hrh" |
|
26 |
|
27 // ----------------------------------------------------------------------------- |
|
28 // Provides a key value pair table, which is used to identify the correct |
|
29 // construction function for the requested interface. |
|
30 // ----------------------------------------------------------------------------- |
|
31 // |
|
32 const TImplementationProxy ImplementationTable[] = |
|
33 { |
|
34 IMPLEMENTATION_PROXY_ENTRY( |
|
35 KTacticonActionPluginImplementationUid, |
|
36 CTacticonActionPlugIn::NewL ) |
|
37 }; |
|
38 |
|
39 // ----------------------------------------------------------------------------- |
|
40 // Returns an instance of the proxy table. |
|
41 // ----------------------------------------------------------------------------- |
|
42 // |
|
43 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
44 TInt& aTableCount ) |
|
45 { |
|
46 aTableCount |
|
47 = sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
48 return ImplementationTable; |
|
49 } |
|
50 |
|
51 // End of File |