htiui/HtiAdmin/inc/HtiAdminApplication.h
changeset 0 d6fe6244b863
equal deleted inserted replaced
-1:000000000000 0:d6fe6244b863
       
     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:  Application class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __HTIADMIN_APPLICATION_H__
       
    20 #define __HTIADMIN_APPLICATION_H__
       
    21 
       
    22 // INCLUDES
       
    23 
       
    24 #include <aknapp.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 /**
       
    28     An instance of CHtiAdminApplication is the application part of the AVKON
       
    29   application framework for the HtiAdmin example application
       
    30   */
       
    31 class CHtiAdminApplication : public CAknApplication
       
    32     {
       
    33 public:  // from CAknApplication
       
    34 
       
    35 /**
       
    36     Returns the application DLL UID value
       
    37   @return the UID of this Application/Dll
       
    38   */
       
    39     TUid AppDllUid() const;
       
    40 
       
    41 protected: // from CAknApplication
       
    42 /**
       
    43     Create a CApaDocument object and return a pointer to it
       
    44   @return a pointer to the created document
       
    45   */
       
    46     CApaDocument* CreateDocumentL();
       
    47     };
       
    48 
       
    49 #endif // __HTIADMIN_APPLICATION_H__
       
    50 
       
    51 
       
    52 // End of File