securitydialogs/simlockui/inc/SimLockUIApplication.h
changeset 1 d5423fbb4f29
equal deleted inserted replaced
0:164170e6151a 1:d5423fbb4f29
       
     1 /*
       
     2 * ============================================================================
       
     3 *  Name         : SimLockUIApplication.h
       
     4 *  Part of      : Sim Lock UI Application
       
     5 *  Description  : SimLock UI Application header
       
     6 *  Version      : 
       
     7 *  
       
     8 * Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     9 * All rights reserved.
       
    10 * This component and the accompanying materials are made available
       
    11 * under the terms of "Eclipse Public License v1.0"
       
    12 * which accompanies this distribution, and is available
       
    13 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    14 *
       
    15 * Initial Contributors:
       
    16 * Nokia Corporation - initial contribution.
       
    17 *
       
    18 * Contributors:
       
    19 *
       
    20 * Description:   Build info file for Ado domain appinstall 
       
    21 * ============================================================================
       
    22 */
       
    23 
       
    24 #ifndef __SIMLOCKUI_APPLICATION_H__
       
    25 #define __SIMLOCKUI_APPLICATION_H__
       
    26 
       
    27 #include <aknapp.h> // CAknApplication
       
    28   
       
    29 /**
       
    30  *  CSimLockUIApplication
       
    31  *  Sim Lock UI Application class.
       
    32  *
       
    33  *  An instance of CSimLockUIApplication is the application part of the AVKON
       
    34  *  application framework for the SimLockUI example application
       
    35  *
       
    36  *  @lib avkon.lib
       
    37  *  @lib eikcore.lib
       
    38  *  @lib eiksrv.lib
       
    39  */
       
    40 class CSimLockUIApplication : public CAknApplication
       
    41     {
       
    42 public:  // from CAknApplication
       
    43 
       
    44     /**
       
    45      * From CAknApplication
       
    46      * Utility function to return the application's UID.
       
    47      *
       
    48      * @return Application's UID (KUidPDApplicationApp).
       
    49      */
       
    50     TUid AppDllUid() const;
       
    51 
       
    52 protected: // from CAknApplication
       
    53 
       
    54     /** 
       
    55      * CreateDocumentL
       
    56      *
       
    57      * Create a CApaDocument object and return a pointer to it
       
    58      * @return a pointer to the created document
       
    59      */
       
    60     CApaDocument* CreateDocumentL();
       
    61     };
       
    62 
       
    63 #endif // __SIMLOCKUI_APPLICATION_H__
       
    64 
       
    65 // end of file.