sdkcreationmw/sdkexamples/cppexamples/S60Ex/IsvTelInfoApp/inc/IsvTelInfoAppApplication.h
changeset 0 b26acd06ea60
child 1 ac50fd48361b
equal deleted inserted replaced
-1:000000000000 0:b26acd06ea60
       
     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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef ISVTELINFOAPPAPPLICATION_H
       
    20 #define ISVTELINFOAPPAPPLICATION_H
       
    21 
       
    22 // INCLUDES
       
    23 #include <aknapp.h>
       
    24 
       
    25 // CONSTANTS
       
    26 const TUid KUidIsvTelInfoApp = { 0xA00001F0  }; // UID of the application
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 * CIsvTelInfoAppApplication application class.
       
    32 * Provides factory to create concrete document object.
       
    33 */
       
    34 class CIsvTelInfoAppApplication : public CAknApplication
       
    35     {
       
    36     private: // From CApaApplication
       
    37 
       
    38         /**
       
    39         * From CApaApplication, CreateDocumentL.
       
    40         * Creates CIsvTelInfoAppDocument document object.
       
    41         * @return A pointer to the created document object.
       
    42         */
       
    43         CApaDocument* CreateDocumentL();
       
    44 
       
    45         /**
       
    46         * From CApaApplication, AppDllUid.
       
    47         * Returns application's UID (KUidIsvTelInfoApp).
       
    48         * @return The value of KUidIsvTelInfoApp.
       
    49         */
       
    50         TUid AppDllUid() const;
       
    51 
       
    52     };
       
    53 
       
    54 #endif
       
    55 
       
    56 // End of File