appinstaller/AppinstUi/Plugin/Tasks/StartupTask/Inc/StartupTaskRemove.h
changeset 0 ba25891c3a9e
equal deleted inserted replaced
-1:000000000000 0:ba25891c3a9e
       
     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 file contains the header file of the CStartupTaskRemove 
       
    15 *                class.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef STARTUPTASKREMOVE_H
       
    21 #define STARTUPTASKREMOVE_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 #include "StartupTask.h"
       
    26 
       
    27 namespace SwiUI
       
    28 {
       
    29 
       
    30 /**
       
    31 * Implementation of CTask ECOM interface for startup list removal task.
       
    32 *
       
    33 * @since 3.0
       
    34 */
       
    35 class CStartupTaskRemove : public CStartupTask
       
    36     {
       
    37     public:  // Constructors and destructor
       
    38         
       
    39         /**
       
    40         * Two-phased constructor.
       
    41         */
       
    42         static CStartupTaskRemove* NewL();
       
    43 
       
    44         /**
       
    45         * Destructor.
       
    46         */
       
    47         virtual ~CStartupTaskRemove();
       
    48 
       
    49     public: // New functions
       
    50         
       
    51         /**
       
    52         * From CTask, Executes the task.
       
    53         * @since 3.0
       
    54         */
       
    55         void ExecuteL();       
       
    56                 
       
    57     private: // New functions
       
    58         
       
    59         /**
       
    60         * Constructor.
       
    61         */  
       
    62         CStartupTaskRemove();
       
    63     };
       
    64 }
       
    65 
       
    66 #endif      // TASK_H   
       
    67             
       
    68 // End of File