|
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 "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: MRMBUTILSEXTENSION ECOM definition implementation |
|
15 * |
|
16 */ |
|
17 |
|
18 // ---------------------------------------------------------------------------- |
|
19 // INCLUDE FILES |
|
20 // ---------------------------------------------------------------------------- |
|
21 // |
|
22 // From ESMRVIEWER |
|
23 #include "cmrmbutilsextensionimpl.h" |
|
24 #include "esmrinternaluid.h" |
|
25 |
|
26 // From System |
|
27 #include <e32base.h> |
|
28 #include <ecom/implementationproxy.h> |
|
29 |
|
30 // ==================== LOCAL FUNCTIONS ==================== |
|
31 |
|
32 // ---------------------------------------------------------------------------- |
|
33 // ImplementationTable |
|
34 // Definition for ESMRVIEWER constructor methods |
|
35 // ---------------------------------------------------------------------------- |
|
36 // |
|
37 const TImplementationProxy ImplementationTable[] = |
|
38 { |
|
39 IMPLEMENTATION_PROXY_ENTRY( KESMRMButilsExtensionImplementationUid, |
|
40 CMRMbUtilsExtensionImpl::NewL ) |
|
41 }; |
|
42 |
|
43 /** |
|
44 * ImplementationGroupProxy |
|
45 * @param aTableCount |
|
46 * @returns "TImplementationProxy*" |
|
47 */ |
|
48 // ---------------------------------------------------------------------------- |
|
49 // ImplementationGroupProxy |
|
50 // Fetches ESMRVIEWER constructor methods. |
|
51 // |
|
52 // @param aTableCount On returns contains the number of constructor methods. |
|
53 // ---------------------------------------------------------------------------- |
|
54 // |
|
55 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( |
|
56 TInt& aTableCount ) |
|
57 { |
|
58 aTableCount = |
|
59 sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
60 return ImplementationTable; |
|
61 } |
|
62 |
|
63 // End of file |