widgets/widgetinstaller/src/WidgetUIMain.cpp
changeset 0 dd21522fd290
child 68 92a765b5b3e7
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     1 /*
       
     2 * Copyright (c) 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 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:  This file contains code to match the widget installer ui implementation to 
       
    15 *                KSWInstWidgetImplementationUid.
       
    16 *
       
    17 *                This class implements the ECom SWInstUIPluginAPI interface
       
    18 *                for midlet installation.
       
    19 *
       
    20 */
       
    21 
       
    22 #include <e32std.h>
       
    23 #include <ecom/implementationproxy.h>
       
    24 #include "WidgetInstallerUI.h"
       
    25 #include "SWInstWidgetUid.h"
       
    26 
       
    27 using namespace SwiUI;
       
    28 
       
    29 // CONSTANTS
       
    30 
       
    31 const TImplementationProxy KImplementationTable[] =
       
    32     {
       
    33     IMPLEMENTATION_PROXY_ENTRY( KSWInstWidgetImplementationUid,
       
    34                                 CWidgetInstallerUI::NewL )
       
    35     };
       
    36 
       
    37 // ========================== OTHER EXPORTED FUNCTIONS =========================
       
    38 
       
    39 // ============================================================================
       
    40 // ImplementationGroupProxy
       
    41 // Returns the filters implemented in this DLL
       
    42 // Returns: The filters implemented in this DLL
       
    43 //
       
    44 // @since 3.1
       
    45 // ============================================================================
       
    46 //
       
    47 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    48     {
       
    49     aTableCount = sizeof( KImplementationTable ) / sizeof( TImplementationProxy );
       
    50     return KImplementationTable;
       
    51     }
       
    52 
       
    53 //  End of File