equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2002-2004 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: The Aiw application gets instantiated starting from this class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INTERNAL INCLUDES |
|
20 #include "ProfileAiwProviderUid.h" |
|
21 #include "CProfileAiwProvider.h" |
|
22 |
|
23 // EXTERNAL INCLUDES |
|
24 #include <e32std.h> |
|
25 #include <implementationproxy.h> |
|
26 |
|
27 // Define the interface UIDs |
|
28 const TImplementationProxy ImplementationTable[] = |
|
29 { |
|
30 IMPLEMENTATION_PROXY_ENTRY( KProfileAiwProviderImplUid, CProfileAiwProvider::NewL ) |
|
31 }; |
|
32 |
|
33 // The one and only exported function that is the ECom entry point |
|
34 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount ) |
|
35 { |
|
36 aTableCount = sizeof( ImplementationTable ) / sizeof( TImplementationProxy ); |
|
37 |
|
38 return ImplementationTable; |
|
39 } |
|