securitydialogs/lockapp/inc/lockappapplication.h
branchRCL_3
changeset 22 03674e5abf46
parent 0 164170e6151a
equal deleted inserted replaced
21:09b1ac925e3f 22:03674e5abf46
       
     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 that also creates the appserver
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __LOCKAPP_APPLICATION_H__
       
    20 #define __LOCKAPP_APPLICATION_H__
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 /**
       
    26  *  CLockAppApplication class, is the application part of the Avkon 
       
    27  *  framework.
       
    28  *
       
    29  *  @lib    lockapp
       
    30  *  @since  5.0
       
    31  *  @author Joona Petrell
       
    32  *  @author Tamas Koteles
       
    33  */
       
    34 class CLockAppApplication : public CAknApplication
       
    35 	{
       
    36 	public:
       
    37 
       
    38 		/**
       
    39 		 * @return LockApp application Uid.
       
    40 		 */
       
    41 		TUid AppDllUid( ) const;
       
    42 
       
    43 	protected:
       
    44 
       
    45 		CApaDocument* CreateDocumentL( );
       
    46 
       
    47 	};
       
    48 
       
    49 #endif // __LOCKAPP_APPLICATION_H__