eventsui/eventshandlerui/eventshandlerserver/src/evtserverapp.cpp
branchRCL_3
changeset 18 870918037e16
parent 0 522cd55cc3d7
equal deleted inserted replaced
17:1fc85118c3ae 18:870918037e16
       
     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:  Application class for Events Handler Server.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // SYSTEM INCLUDES
       
    20 #include <eikstart.h>
       
    21 
       
    22 // USER INCLUDES
       
    23 #include "evtserverapp.h"
       
    24 #include "evtserverappdocument.h"
       
    25 #include "evthandlerserveruid.hrh"
       
    26 
       
    27 // ------------------------ Local Functions ----------------------------------
       
    28 
       
    29 // ----------------- Member funtions for CEvtServerApp ------------------------------
       
    30 	
       
    31 // ---------------------------------------------------------------------------
       
    32 // TUid CEvtServerApp::AppDllUid
       
    33 // ---------------------------------------------------------------------------
       
    34 //
       
    35 TUid CEvtServerApp::AppDllUid() const
       
    36     {
       
    37     return TUid::Uid( KEvtHandlerServerUid );
       
    38     }
       
    39 
       
    40 // ---------------------------------------------------------------------------
       
    41 // CApaDocument* CEvtServerApp::CreateDocumentL
       
    42 // ---------------------------------------------------------------------------
       
    43 //
       
    44 CApaDocument* CEvtServerApp::CreateDocumentL()
       
    45     {
       
    46     return new (ELeave) CEvtServerAppDocument( *this );
       
    47     }
       
    48 
       
    49 // End of File  
       
    50