usbuis/usbui/inc/USBClassChangeUIDocument.h
branchRCL_3
changeset 80 e02eb84a14d2
parent 0 1e05558e2206
equal deleted inserted replaced
79:25fce757be94 80:e02eb84a14d2
       
     1 /*
       
     2 * Copyright (c) 2005, 2006 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:  Declares document for application.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef USBCLASSCHANGEUIDOCUMENT_H
       
    20 #define USBCLASSCHANGEUIDOCUMENT_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <AknDoc.h>
       
    24 
       
    25 // CONSTANTS
       
    26 
       
    27 // FORWARD DECLARATIONS
       
    28 
       
    29 class CEikAppUi;
       
    30 class CUSBClassChangeUIModel;
       
    31 
       
    32 // CLASS DECLARATION
       
    33 
       
    34 /**
       
    35 *  This class is a base class mandatory for all Symbian OS UI applications.
       
    36 *
       
    37 *  @lib
       
    38 *  @since Series 60 3.0
       
    39 */
       
    40 class CUSBClassChangeUIDocument : public CAknDocument
       
    41     {
       
    42     public: // Constructors and destructor
       
    43 
       
    44 		
       
    45 	    /**
       
    46         * C++ default constructor.
       
    47         */
       
    48         CUSBClassChangeUIDocument( 
       
    49             CEikApplication& aApp ): CAknDocument( aApp ){ }
       
    50 		
       
    51 		
       
    52 	    /**
       
    53         * Destructor.
       
    54         */
       
    55         virtual ~CUSBClassChangeUIDocument();
       
    56         
       
    57     public:		// New functions
       
    58 	
       
    59 	private: // Functions from base classes
       
    60 
       
    61 	    /**
       
    62         * From CEikDocument, to create CUSBClassChangeUiAppUi "App UI" object.
       
    63         */
       
    64         CEikAppUi* CreateAppUiL();
       
    65 	
       
    66 	private:
       
    67 	
       
    68         
       
    69 	private:	// Data	
       
    70     };
       
    71 
       
    72 #endif
       
    73 
       
    74 // End of File