mediasettings/mediasettingsengine/src/MPSettingsModelForRopImplementationProxy.cpp
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: Implementation group proxy for ROP specific media settings model* |
|
15 */ |
|
16 |
|
17 |
|
18 // Version : %version: 3 % |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 // INCLUDE FILES |
|
24 #include <e32std.h> |
|
25 #include <implementationproxy.h> |
|
26 #include "MPSettEngPluginImplementationUIDs.hrh" |
|
27 #include "MPSettingsModelForROP.h" |
|
28 |
|
29 |
|
30 // CONSTANTS |
|
31 // Table of available ECOM plugin implementations for CMPSettingsModel in this DLL. |
|
32 const TImplementationProxy ImplementationTable[] = |
|
33 { |
|
34 IMPLEMENTATION_PROXY_ENTRY(KMPSettEngImplUidROP, CMPSettingsModelForROP::NewL) |
|
35 }; |
|
36 |
|
37 |
|
38 // ========================== OTHER EXPORTED FUNCTIONS ========================= |
|
39 |
|
40 // ----------------------------------------------------------------------------- |
|
41 // ImplementationProxy |
|
42 // ECOM implementation table entry. |
|
43 // |
|
44 // Returns: Table of available ECOM plugin implementations for CMPSettingsModel |
|
45 // in this DLL. |
|
46 // ----------------------------------------------------------------------------- |
|
47 // |
|
48 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount) |
|
49 { |
|
50 aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy); |
|
51 |
|
52 return ImplementationTable; |
|
53 } |
|
54 |
|
55 // End of File |