hotspotfw/hsbrowser/inc/hsbrowserapp.h
branchRCL_3
changeset 24 63be7eb3fc78
parent 23 b852595f5cbe
child 25 f28ada11abbf
equal deleted inserted replaced
23:b852595f5cbe 24:63be7eb3fc78
     1 /*
       
     2 * Copyright (c) 2007 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 main application class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef HSBROWSERAPP_H
       
    21 #define HSBROWSERAPP_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <aknapp.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 /**
       
    28 * CHsBrowserApp application class.
       
    29 * Provides the factory to create a concrete document object.
       
    30 * 
       
    31 */
       
    32 class CHsBrowserApp : public CAknApplication
       
    33     {
       
    34     
       
    35     public: // Functions from base classes
       
    36         /**
       
    37         * From CApaApplication, overridden to enable INI file support.
       
    38         * @return CDictionaryStore*, A pointer to the dictionary store
       
    39         */
       
    40         CDictionaryStore* OpenIniFileLC(RFs& aFs) const;
       
    41     private:
       
    42 
       
    43         /**
       
    44         * From CApaApplication, creates CHsBrowserDocument document object.
       
    45         * @return CApaDocument*, A pointer to the created document object.
       
    46         */
       
    47         CApaDocument* CreateDocumentL();
       
    48         
       
    49         /**
       
    50         * From CApaApplication, returns application's UID.
       
    51         * @return TUid, The value of KUidHsBrowserApp.
       
    52         */
       
    53         TUid AppDllUid() const;
       
    54     };
       
    55 
       
    56 #endif
       
    57 
       
    58 // End of File
       
    59