userdict/inc/UdictApp.h
changeset 0 9a3a17bfeb67
equal deleted inserted replaced
-1:000000000000 0:9a3a17bfeb67
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:     Japanese user dictionary Application class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 #ifndef UDICTAPP_H
       
    24 #define UDICTAPP_H
       
    25 
       
    26 //  INCLUDES
       
    27 #include <aknapp.h>
       
    28 
       
    29 // CONSTANTS
       
    30 // UID of the application
       
    31 const TUid KUidUserDict = { 0x101F8645 };
       
    32 
       
    33 // CLASS DECLARATION
       
    34 
       
    35 /**
       
    36 *  Japanese user dictionary Application class.
       
    37 *  @since 2.6
       
    38 */
       
    39 class CUserDictApp : public CAknApplication
       
    40     {
       
    41     private: // Functions from base classes
       
    42 
       
    43         /**
       
    44         * From CApaApplication.
       
    45         * Returns application's UID.
       
    46         * @return the value of KUidUserDict.
       
    47         */
       
    48         TUid AppDllUid() const;
       
    49 
       
    50         /**
       
    51         * From CApaApplication.
       
    52         * Creates CUserDictDocument document object.
       
    53         * @return the created document object.
       
    54         */
       
    55         CApaDocument* CreateDocumentL();
       
    56     };
       
    57 
       
    58 #endif      // UDICTAPP_H   
       
    59             
       
    60 // End of File