startupservices/Startup/inc/StartupApplication.h
changeset 0 2e3d3ce01487
child 29 6a787171e1de
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Application class of the module.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef STARTUPAPPLICATION_H
       
    21 #define STARTUPAPPLICATION_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <aknapp.h>
       
    25 
       
    26 
       
    27 // CONSTANTS
       
    28 const TUid KUidStartUp = { 0x100058F4 };
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 /**
       
    33 * CStartupApp application class.
       
    34 */
       
    35 class CStartupApplication : public CAknApplication
       
    36     {
       
    37     private: // from CApaApplication
       
    38         /**
       
    39         * Create CStartupDocument document object.
       
    40         */
       
    41         CApaDocument* CreateDocumentL();
       
    42 
       
    43         /**
       
    44         * Return KUidStartUp.
       
    45         */
       
    46         TUid AppDllUid() const;
       
    47     };
       
    48 
       
    49 #endif // STARTUPAPPLICATION_H
       
    50 
       
    51 // End of file