appinstaller/AppinstUi/Plugin/Tasks/FileTask/Src/FileTaskMain.cpp
changeset 80 9dcba1ee99f7
parent 77 d1838696558c
equal deleted inserted replaced
77:d1838696558c 80:9dcba1ee99f7
     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:   This class contains the ECom specific implementations for
       
    15 *                file task plugins.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include <e32std.h>
       
    22 #include <ecom/implementationproxy.h>
       
    23 
       
    24 #include "FileTaskDelete.h"
       
    25 #include "SWInstUid.h"
       
    26 
       
    27 using namespace SwiUI;
       
    28 
       
    29 // CONSTANTS
       
    30 
       
    31 const TImplementationProxy KImplementationTable[] =
       
    32     {
       
    33     IMPLEMENTATION_PROXY_ENTRY( KSWInstFileTaskDeleteImplUid, 
       
    34                                 CFileTaskDelete::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 //
       
    45 EXPORT_C const TImplementationProxy* ImplementationGroupProxy( TInt& aTableCount )
       
    46     {
       
    47     aTableCount = sizeof( KImplementationTable ) / sizeof( TImplementationProxy );
       
    48     return KImplementationTable;
       
    49     }
       
    50 
       
    51 //  End of File