sdkcreationmw/sdkexamples/cppexamples/S60Ex/ProgressBar/inc/aknexpbarapp.h
changeset 0 b26acd06ea60
child 1 ac50fd48361b
equal deleted inserted replaced
-1:000000000000 0:b26acd06ea60
       
     1 /*
       
     2 * Copyright (c) 2004 - 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 "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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __AKNEXPBARAPP_H__
       
    21 #define __AKNEXPBARAPP_H__
       
    22 
       
    23 
       
    24 // INCLUDES
       
    25 #include <aknapp.h>
       
    26 
       
    27 
       
    28 // CONSTANTS
       
    29 // UID of the application
       
    30 const TUid KUidAknExPbar = { 0xA00001F9 };
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35 * CAknExPbarApp application class.
       
    36 * Provides factory to create concrete document object.
       
    37 * 
       
    38 */
       
    39 class CAknExPbarApp : public CAknApplication
       
    40     {
       
    41     private:  // From CApaApplication
       
    42 
       
    43         /**
       
    44         * CreateDocumentL.
       
    45         * Creates CAknExNoteDocument document object.
       
    46         * @return A pointer to the created document object.
       
    47         */
       
    48         CApaDocument* CreateDocumentL();
       
    49 
       
    50         /**
       
    51         * AppDllUid
       
    52         * Returns application's UID (KUidAknExPbar).
       
    53         * @return The value of KUidAknExPbar.
       
    54         */
       
    55         TUid AppDllUid() const;
       
    56     };
       
    57 
       
    58 #endif // __AKNEXPBARAPP_H__
       
    59 
       
    60 // End of File
       
    61