widgets/widgetstartup/inc/WidgetStartup.h
changeset 0 dd21522fd290
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 the header file of the CWidgetStartup class.
       
    15 *
       
    16 
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef WIDGETSTARTUP_H
       
    22 #define WIDGETSTARTUP_H
       
    23 
       
    24 //  INCLUDES
       
    25 #include <eikappui.h>
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 
       
    29 /**
       
    30 *
       
    31 * @since 3.1
       
    32 */
       
    33 class CWidgetStartup : public CEikAppUi
       
    34     {
       
    35     public:  // Constructors and destructor
       
    36 
       
    37          /**
       
    38          * C++ default constructor.
       
    39          */
       
    40         CWidgetStartup();
       
    41 
       
    42 
       
    43         /**
       
    44         * Destructor.
       
    45         */
       
    46         virtual ~CWidgetStartup();
       
    47 
       
    48 
       
    49     protected:
       
    50     
       
    51         /**
       
    52         * 2nd phase constructor.
       
    53         */
       
    54 	    void ConstructL();
       
    55 	    
       
    56     private:
       
    57  
       
    58         /**
       
    59          * Run the preinstall functionality
       
    60          */
       
    61         void DoPreInstallL();
       
    62         
       
    63     private: //  Data
       
    64         
       
    65     };
       
    66     
       
    67 #endif      // WIDGETSTARTUP_H
       
    68 
       
    69 // End of File