eventsui/eventshandlerui/eventshandlerapp/inc/evthandlerappdocument.h
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
equal deleted inserted replaced
16:8173571d354e 17:1fc85118c3ae
     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:  Document class for Events Handler Application.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_EVTHANDLERAPPDOCUMENT_H
       
    20 #define C_EVTHANDLERAPPDOCUMENT_H
       
    21 
       
    22 // SYSTEM INCLUDES
       
    23 #include <AknDoc.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 class  CEikAppUi;
       
    27 
       
    28 /**
       
    29  *  Events Handler App's document class.
       
    30  *
       
    31  *  @lib lcapp.exe
       
    32  *  @since S60 v5.0
       
    33  */
       
    34 class CEvtHandlerAppDocument : public CAknDocument
       
    35     {
       
    36 public:
       
    37 	/**
       
    38 	 * Static Two phase constructor
       
    39 	 */
       
    40     static CEvtHandlerAppDocument* NewL( CEikApplication&    aApp );
       
    41 
       
    42   	/**
       
    43   	 * Virtual destructor
       
    44   	 */
       
    45     virtual ~CEvtHandlerAppDocument();
       
    46 
       
    47 private:
       
    48 	/**
       
    49 	 * C++ Default constructor
       
    50 	 */
       
    51     CEvtHandlerAppDocument( CEikApplication&     aApp );
       
    52 
       
    53 	/**
       
    54 	 * Second phase of the two phase constructor
       
    55 	 */
       
    56     void ConstructL();
       
    57 
       
    58 private: // Inherited from Base class
       
    59 
       
    60 	/**
       
    61 	 * Inherited from CAknDocument
       
    62 	 */
       
    63     CEikAppUi* CreateAppUiL();
       
    64     };
       
    65 
       
    66 #endif  // C_EVTHANDLERAPPDOCUMENT_H
       
    67 
       
    68 // End of File
       
    69