devicediagnostics/devdiagapp/inc/devdiagappapplication.h
changeset 0 3ce708148e4d
equal deleted inserted replaced
-1:000000000000 0:3ce708148e4d
       
     1 /*
       
     2 * Copyright (c) 2007 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
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef DEVDIAGAPP_APPLICATION_H
       
    21 #define DEVDIAGAPP_APPLICATION_H
       
    22 
       
    23 #include <aknapp.h>
       
    24 
       
    25  /** 
       
    26  * @class CDevDiagAppApplication
       
    27  * @since 5.0 
       
    28  **/
       
    29 class CDevDiagAppApplication : public CAknApplication
       
    30     {
       
    31 public:  // from CAknApplication
       
    32 
       
    33     /**
       
    34     * Returns the application DLL UID value
       
    35     *
       
    36     * @result the UID of this Application/Dll
       
    37     **/
       
    38     TUid AppDllUid() const;
       
    39 
       
    40 protected: // from CAknApplication
       
    41 
       
    42     /**     
       
    43     * Create a CApaDocument object and return a pointer to it
       
    44     *
       
    45     * @return a pointer to the created document
       
    46     **/
       
    47     CApaDocument* CreateDocumentL();
       
    48     
       
    49     };
       
    50 
       
    51 #endif // DEVDIAGAPP_APPLICATION_H