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