textinput/peninputarc/src/peninputserverapp/peninputserverdocument.cpp
changeset 0 eb1f2e154e89
equal deleted inserted replaced
-1:000000000000 0:eb1f2e154e89
       
     1 /*
       
     2 * Copyright (c) 2006-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:  Implementation for peninput server application document
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "peninputserverdocument.h"
       
    21 #include "peninputserverappui.h"
       
    22 
       
    23 // ================= MEMBER FUNCTIONS =======================
       
    24 
       
    25 // ---------------------------------------------------------------------------
       
    26 // CPeninputServerAppUi::CPeninputServerDocument
       
    27 // ---------------------------------------------------------------------------
       
    28 //
       
    29 CPeninputServerDocument::CPeninputServerDocument(CEikApplication& aApp)
       
    30                                                     : CAknDocument(aApp)    
       
    31     {
       
    32     }
       
    33 
       
    34 // ---------------------------------------------------------------------------
       
    35 // CPeninputServerAppUi::~CPeninputServerDocument
       
    36 // ---------------------------------------------------------------------------
       
    37 //
       
    38 CPeninputServerDocument::~CPeninputServerDocument()
       
    39     {
       
    40     }
       
    41 
       
    42 // ---------------------------------------------------------------------------
       
    43 // CPeninputServerAppUi::ConstructL
       
    44 // ---------------------------------------------------------------------------
       
    45 //
       
    46 void CPeninputServerDocument::ConstructL()
       
    47     {
       
    48     }
       
    49 
       
    50 // ---------------------------------------------------------------------------
       
    51 // CPeninputServerAppUi::NewL
       
    52 // ---------------------------------------------------------------------------
       
    53 //
       
    54 CPeninputServerDocument* CPeninputServerDocument::NewL(CEikApplication& aApp)
       
    55     {
       
    56     CPeninputServerDocument* self = new (ELeave) CPeninputServerDocument(aApp);
       
    57     CleanupStack::PushL( self );
       
    58     self->ConstructL();
       
    59     CleanupStack::Pop();
       
    60     return self;
       
    61     }
       
    62     
       
    63 // ---------------------------------------------------------------------------
       
    64 // CPeninputServerDocument::CreateAppUiL()
       
    65 // constructs CPeninputServerAppUi
       
    66 // ---------------------------------------------------------------------------
       
    67 //
       
    68 CEikAppUi* CPeninputServerDocument::CreateAppUiL()
       
    69     {
       
    70     return new (ELeave) CPeninputServerAppUi;
       
    71     }
       
    72 
       
    73 // End of File