csxhelp/inc/CSXHApplication.h
branchRCL_3
changeset 18 cbffe13eac63
parent 0 1f04cf54edd8
equal deleted inserted replaced
17:12f60d9a73b3 18:cbffe13eac63
       
     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:  CCSXHApplication class declaration
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef INC_CSXHAPPLICATION_H__
       
    21 #define INC_CSXHAPPLICATION_H__
       
    22 
       
    23 #include <aknapp.h>
       
    24 
       
    25 
       
    26 /*! 
       
    27   @class CCSXHApplication
       
    28   
       
    29   An instance of CCSXHApplication is the application part of the AVKON
       
    30   application framework for the Csxhelp application
       
    31   */
       
    32 class CCSXHApplication : public CAknApplication
       
    33     {
       
    34 public:  // from CAknApplication
       
    35 
       
    36 /** 
       
    37   @function AppDllUid
       
    38   @since S60 3.2
       
    39   
       
    40   The application DLL UID value
       
    41   @return the UID of this Application/Dll
       
    42   */
       
    43     TUid AppDllUid() const;
       
    44 
       
    45 protected: // from CAknApplication
       
    46 /** 
       
    47   @function CreateDocumentL
       
    48   @since S60 3.2
       
    49   
       
    50   Create a CApaDocument object and return a pointer to it
       
    51   @return a pointer to the created document
       
    52   */
       
    53     CApaDocument* CreateDocumentL();
       
    54     };
       
    55 
       
    56 #endif // INC_CSXHAPPLICATION_H__