eventsui/eventshandlerui/eventshandlerapp/src/evthandlerappdocument.cpp
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 // INCLUDE FILES
       
    20 #include "evthandlerappdocument.h"
       
    21 #include "evthandlerappui.h"
       
    22 
       
    23 // ----------------- Member funtions for CEvtHandlerAppDocument class ---------
       
    24 
       
    25 // ---------------------------------------------------------------------------
       
    26 // CEvtHandlerAppDocument::CEvtHandlerAppDocument
       
    27 // ---------------------------------------------------------------------------
       
    28 //
       
    29 CEvtHandlerAppDocument::CEvtHandlerAppDocument( CEikApplication&  aApp )
       
    30 	:CAknDocument( aApp )    
       
    31     {
       
    32     }
       
    33 
       
    34 // ---------------------------------------------------------------------------
       
    35 // CEvtHandlerAppDocument::~CEvtHandlerAppDocument
       
    36 // ---------------------------------------------------------------------------
       
    37 //
       
    38 CEvtHandlerAppDocument::~CEvtHandlerAppDocument()
       
    39     { 
       
    40     }
       
    41 
       
    42 // ---------------------------------------------------------------------------
       
    43 // CEvtHandlerAppDocument* CEvtHandlerAppDocument::NewL
       
    44 // ---------------------------------------------------------------------------
       
    45 //
       
    46 CEvtHandlerAppDocument* CEvtHandlerAppDocument::NewL( CEikApplication&    aApp )     
       
    47     {
       
    48     CEvtHandlerAppDocument* self = new (ELeave) CEvtHandlerAppDocument( aApp );
       
    49     CleanupStack::PushL( self );
       
    50     self->ConstructL();
       
    51     CleanupStack::Pop();
       
    52     
       
    53     return self;
       
    54     }
       
    55     
       
    56 // ---------------------------------------------------------------------------
       
    57 // CEvtHandlerAppDocument::ConstructL
       
    58 // ---------------------------------------------------------------------------
       
    59 //
       
    60 void CEvtHandlerAppDocument::ConstructL()
       
    61     {
       
    62     }
       
    63     
       
    64 // ---------------------------------------------------------------------------
       
    65 // CEvtHandlerAppDocument::CEvtHandlerAppDocument
       
    66 // ---------------------------------------------------------------------------
       
    67 //    
       
    68 CEikAppUi* CEvtHandlerAppDocument::CreateAppUiL()
       
    69     {
       
    70     return new (ELeave) CEvtHandlerAppUi;
       
    71     }
       
    72 
       
    73 // End of File