textinput/peninputvkbkr/src/PeninputVkbKrDataMgr.cpp
changeset 0 eb1f2e154e89
equal deleted inserted replaced
-1:000000000000 0:eb1f2e154e89
       
     1 /*
       
     2 * Copyright (c) 2002-2005 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:  peninput VKB data manager
       
    15 *
       
    16 */
       
    17 
       
    18 #include <PtiEngine.h>
       
    19 #include "PeninputVkbKrDataMgr.h"
       
    20 
       
    21 // ---------------------------------------------------------------------------
       
    22 // Constructors & Destructors
       
    23 // ---------------------------------------------------------------------------
       
    24 //
       
    25 
       
    26 CPeninputVkbKrDataMgr* CPeninputVkbKrDataMgr::NewLC(
       
    27         MPeninputLayoutContext* aContext,
       
    28         CPtiEngine& aPtiEngine)
       
    29     {
       
    30     CPeninputVkbKrDataMgr* self = 
       
    31         new (ELeave) CPeninputVkbKrDataMgr(aContext,aPtiEngine);
       
    32     CleanupStack::PushL(self);
       
    33     self->ConstructL();
       
    34     return self;
       
    35     }
       
    36 
       
    37 CPeninputVkbKrDataMgr* CPeninputVkbKrDataMgr::NewL(
       
    38         MPeninputLayoutContext* aContext,
       
    39         CPtiEngine& aPtiEngine)
       
    40     {
       
    41     CPeninputVkbKrDataMgr* self = 
       
    42         CPeninputVkbKrDataMgr::NewLC(aContext,aPtiEngine);
       
    43     CleanupStack::Pop(); // self;
       
    44     return self;
       
    45     }
       
    46 
       
    47 CPeninputVkbKrDataMgr::CPeninputVkbKrDataMgr(
       
    48         MPeninputLayoutContext* aContext,
       
    49         CPtiEngine& aPtiEngine)
       
    50     : CPeninputDataMgr(aContext),
       
    51       iPtiEngine(aPtiEngine)
       
    52     {
       
    53     }
       
    54 
       
    55 CPeninputVkbKrDataMgr::~CPeninputVkbKrDataMgr()
       
    56     {
       
    57     }
       
    58 
       
    59 // ---------------------------------------------------------------------------
       
    60 // from CPeninputDataMgr
       
    61 // ---------------------------------------------------------------------------
       
    62 //
       
    63