piprofilerui/ui/avkon/inc/profiler_gui_app.h
changeset 51 b048e15729d6
parent 44 5db69f4c3d06
child 52 36d60d12b4af
equal deleted inserted replaced
44:5db69f4c3d06 51:b048e15729d6
     1 /*
       
     2 * Copyright (c) 2009 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 PROFILER_GUI_APP_H
       
    21 #define PROFILER_GUI_APP_H
       
    22 
       
    23 
       
    24 // INCLUDES
       
    25 #include <aknapp.h>
       
    26 
       
    27 // CONSTANTS
       
    28 // UID of the application
       
    29 const TUid KUidProfilerGui = { 0x2001E5AE };
       
    30 
       
    31 // CLASS DECLARATION
       
    32 
       
    33 /**
       
    34 * CProfilerGuiApp application class.
       
    35 * Provides factory to create concrete document object.
       
    36 * 
       
    37 */
       
    38 class CProfilerGuiApp : public CAknApplication
       
    39     {
       
    40     
       
    41     public: // Functions from base classes
       
    42 
       
    43     private:
       
    44 
       
    45         /**
       
    46         * From CApaApplication, creates CProfilerGuiDocument document object.
       
    47         * @return A pointer to the created document object.
       
    48         */
       
    49         CApaDocument* CreateDocumentL();
       
    50         
       
    51         /**
       
    52         * From CApaApplication, returns application's UID (KUidProfilerGui).
       
    53         * @return The value of KUidProfilerGui.
       
    54         */
       
    55         TUid AppDllUid() const;
       
    56     };
       
    57 
       
    58 #endif
       
    59 
       
    60 // End of File
       
    61