equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004-2006 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: StartupAdaptationStub ECOM implementation factory. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 // INCLUDE FILES |
|
21 #include "StartupAdaptationStub.h" |
|
22 #include <ecom/implementationproxy.h> |
|
23 |
|
24 // LOCAL CONSTANTS AND MACROS |
|
25 |
|
26 // Define the interface UIDs. |
|
27 const TImplementationProxy ImplementationTable[] = |
|
28 { |
|
29 // Remove PCLint note "C-style cast" |
|
30 //lint -e1924 |
|
31 // Remove PCLint warning "Suspicious cast" |
|
32 //lint -e611 |
|
33 IMPLEMENTATION_PROXY_ENTRY( 0x10205055, CStartupAdaptationStub::NewL ) |
|
34 //lint +e1924 |
|
35 //lint +e611 |
|
36 }; |
|
37 |
|
38 |
|
39 // ========================== OTHER EXPORTED FUNCTIONS ========================= |
|
40 |
|
41 // ----------------------------------------------------------------------------- |
|
42 // ImplementationGroupProxy. |
|
43 // |
|
44 // ----------------------------------------------------------------------------- |
|
45 // |
|
46 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) |
|
47 { |
|
48 aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
49 return ImplementationTable; |
|
50 } |
|
51 |
|
52 |
|
53 // End of File |