stifui/uitestserverstarter/inc/UITestServerStarterApplication.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: This file contains the header file of the 
       
    15 * CUITestServerStarterApplication class.
       
    16 *
       
    17 */
       
    18 
       
    19 #ifndef UITESTSERVERSTARTERAPPLICATION_H_
       
    20 #define UITESTSERVERSTARTERAPPLICATION_H_
       
    21 
       
    22 
       
    23 //  INCLUDES
       
    24 #include <aknapp.h>
       
    25 #include "UITestServerStarter.hrh"
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 // UID for the application;
       
    30 const TUid KUidUITestServerStarterApp =
       
    31 	{
       
    32 	_UID3
       
    33 	};
       
    34 
       
    35 const TUid KMainViewId = { 1982 };
       
    36 // CLASS DECLARATION
       
    37 
       
    38 // CLASS DECLARATION
       
    39 // DESCRIPTION
       
    40 /**
       
    41  * UITestServerStarterApplication application class.
       
    42  * Provides factory to create concrete document object.
       
    43  * An instance of CUITestServerStarterApplication is the application part of the
       
    44  * AVKON application framework for the CUITestServerStarterApplication application.
       
    45  */
       
    46 class CUITestServerStarterApplication : public CAknApplication
       
    47 	{
       
    48 	public: // Enumerations
       
    49 	    // None
       
    50 	
       
    51 	private: // Enumerations
       
    52 	    // None
       
    53 	
       
    54 	public:  // Constructors and destructor
       
    55 	    /**
       
    56 	    * C++ destructor.
       
    57 	    */
       
    58 	
       
    59 	public:
       
    60 	// Functions from base classes
       
    61 	
       
    62 	/**
       
    63 	 * From CApaApplication, AppDllUid.
       
    64 	 * @return Application's UID (KUidUITestServerStarterApplication).
       
    65 	 */
       
    66 	TUid AppDllUid () const;
       
    67 	
       
    68 	protected: // Functions from base classes
       
    69 	
       
    70 	/**
       
    71 	 * From CApaApplication, CreateDocumentL.
       
    72 	 * Creates CUITestServerStarterDocument document object. The returned
       
    73 	 * pointer in not owned by the CUITestServerStarterApplication object.
       
    74 	 * @return A pointer to the created document object.
       
    75 	 */
       
    76 	CApaDocument* CreateDocumentL ();
       
    77 	
       
    78 	virtual void PreDocConstructL();
       
    79 	
       
    80 	
       
    81     protected:	// New functions
       
    82         // None
       
    83         
       
    84     protected:	// Functions from base classes
       
    85         // None	
       
    86 	
       
    87     private:	// New functions
       
    88     	// None
       
    89 	
       
    90 	public:		//Data
       
    91 	    // None
       
    92         
       
    93 	protected:	// Data
       
    94         // None
       
    95         
       
    96     private:	// Data
       
    97     	// None
       
    98 			
       
    99 	public:		// Friend classes
       
   100 		// None
       
   101 	
       
   102 	protected:	// Friend classes
       
   103 		// None
       
   104 	
       
   105 	private:	// Friend classes
       
   106 		// None		
       
   107 	};
       
   108 
       
   109 
       
   110 
       
   111 #endif /*UITESTSERVERSTARTERAPPLICATION_H_*/