coreapplicationuis/SysAp/Inc/SysApApp.h
changeset 0 2e3d3ce01487
child 46 eea20ed08f4b
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:  CSysApApp class definition. Application core.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef SYSAPAPP_H
       
    20 #define SYSAPAPP_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 // CONSTANTS
       
    26 const TUid KUidSysAp={0x100058F3};
       
    27 
       
    28 // CLASS DECLARATION
       
    29 /**
       
    30 *  CSysApApp
       
    31 *
       
    32 *  @lib   sysap
       
    33 *  @since 1.0
       
    34 */
       
    35 
       
    36 class CSysApApp : public CAknApplication
       
    37     {
       
    38     private: // from CApaApplication
       
    39         /**
       
    40         * Create CSysApDocument document object.
       
    41         */
       
    42         CApaDocument* CreateDocumentL();
       
    43 
       
    44         /**
       
    45         * Return KUidSysAp.
       
    46         */
       
    47         TUid AppDllUid() const;
       
    48     };
       
    49 
       
    50 #endif      // SYSAPAPP_H
       
    51             
       
    52 // End of File
       
    53