usbuis/imageprintui/inc/imageprintuiapp.h
changeset 93 2dc695882abd
parent 89 3592750162a5
equal deleted inserted replaced
89:3592750162a5 93:2dc695882abd
     1 /*
       
     2 * Copyright (c) 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:  Header file for imageprintuiapp 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CIMAGEPRINTUIAPP_H
       
    20 #define CIMAGEPRINTUIAPP_H
       
    21 
       
    22 //  EXTERNAL INCLUDES
       
    23 #include <e32base.h>
       
    24 #include <aknapp.h>
       
    25 
       
    26 //  CONSTANTS
       
    27 /**
       
    28 * UID of the application
       
    29 */
       
    30 const TUid KUidImagePrint = { 0x1020E470 };
       
    31 const TUid KUidUSB = { 0x102068E2 }; 
       
    32 
       
    33 //  CLASS DEFINITION
       
    34 /**
       
    35  * S60 Application class
       
    36  */
       
    37 class CImagePrintUiApp : public CAknApplication
       
    38 	{
       
    39 
       
    40 private:	// Constructors and destructors
       
    41 
       
    42     /**
       
    43      * From CAknApplication, creates CImagePrintUiDocument document
       
    44      * object.
       
    45      * @return A pointer to the created document object.
       
    46      */
       
    47     CApaDocument* CreateDocumentL();
       
    48 
       
    49 private:	// Methods derived from CApaApplication
       
    50 
       
    51     /**
       
    52      * From CAknApplication, returns application's UID.
       
    53      * @return The value of KUidImagePrint.
       
    54      */
       
    55     TUid AppDllUid() const;
       
    56 
       
    57     };
       
    58 
       
    59 #endif // IMAGEPRINTUIAPP_H