smartinstaller/bootstrap/inc/bootstrapapplication.h
branchADM
changeset 48 364021cecc90
equal deleted inserted replaced
47:3f419852be07 48:364021cecc90
       
     1 /*
       
     2 * Copyright (c) 2009-2010 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 *     Main Application File for Bootstrap
       
    16 *
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 #ifndef __BOOTSTRAPAPPLICATION_H__
       
    22 #define __BOOTSTRAPAPPLICATION_H__
       
    23 
       
    24 // INCLUDES
       
    25 #include <aknapp.h>
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 /**
       
    30 * CBootstrapApplication application class.
       
    31 * Provides factory to create concrete document object.
       
    32 */
       
    33 class CBootstrapApplication : public CAknApplication
       
    34 	{
       
    35 	public: // Functions from base classes
       
    36 
       
    37 		/**
       
    38 		* From CApaApplication, AppDllUid.
       
    39 		* @return Application's UID
       
    40 		*/
       
    41 		TUid AppDllUid() const;
       
    42 
       
    43 	protected: // Functions from base classes
       
    44 
       
    45 		/**
       
    46 		* From CApaApplication, CreateDocumentL.
       
    47 		* Creates CCBootstrapDocument document object. The returned
       
    48 		* pointer in not owned by the CBootstrapApplication object.
       
    49 		* @return A pointer to the created document object.
       
    50 		*/
       
    51 		CApaDocument* CreateDocumentL();
       
    52 	};
       
    53 
       
    54 #endif // __BOOTSTRAPAPPLICATION_H__
       
    55 
       
    56 // End of File