fep/aknfep/UiPlugins/AknFepUiInterface/AvkonImpl/src/AknFepPredictiveSettingData.cpp
changeset 36 a7632c26d895
parent 35 0f326f2e628e
child 42 b3eaa440ab06
equal deleted inserted replaced
35:0f326f2e628e 36:a7632c26d895
     1 /*
       
     2 * Copyright (c) 2009 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:          
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 
       
    25 
       
    26 
       
    27 /*
       
    28  * ============================================================================
       
    29  *  Name     : CAknFepPredictiveSettingData from AknFepPredictiveSettingData 
       
    30  * ============================================================================
       
    31  */
       
    32 
       
    33 #include "AknFepPredictiveSettingData.h"
       
    34 
       
    35 CAknFepPredictiveSettingData *CAknFepPredictiveSettingData::NewL()
       
    36 	{
       
    37 	CAknFepPredictiveSettingData *self = CAknFepPredictiveSettingData::NewLC();
       
    38 	CleanupStack::Pop(self);
       
    39 	return self;
       
    40 	}
       
    41 
       
    42 CAknFepPredictiveSettingData *CAknFepPredictiveSettingData::NewLC()
       
    43 	{
       
    44 	CAknFepPredictiveSettingData *self = new (ELeave) CAknFepPredictiveSettingData();
       
    45 	CleanupStack::PushL(self);
       
    46 	return self;
       
    47 	}
       
    48 
       
    49 CAknFepPredictiveSettingData::~CAknFepPredictiveSettingData()
       
    50 	{
       
    51 	}
       
    52 
       
    53 CAknFepPredictiveSettingData::CAknFepPredictiveSettingData()
       
    54 	{
       
    55 	}
       
    56 
       
    57 
       
    58 
       
    59 void CAknFepPredictiveSettingData::LoadL(TInt aAutoWordCompl,
       
    60 										 TInt aTypingCorrection,
       
    61 										 TInt aNumberCandidates,
       
    62 										 TInt aPrimaryCandidate,
       
    63 										 TInt aPhysicalKeyboards,
       
    64 										 TInt aAWCBitmask)
       
    65     {
       
    66     iAutoWordCompl = aAutoWordCompl;
       
    67     iTypingCorrection = aTypingCorrection;
       
    68     iNumberCandidates = aNumberCandidates;
       
    69     iPrimaryCandidate = aPrimaryCandidate;
       
    70     iPhysicalKeyboards = aPhysicalKeyboards;
       
    71     iAWCBitmask = aAWCBitmask;
       
    72     }
       
    73     
       
    74 void CAknFepPredictiveSettingData::SaveL() const
       
    75     {
       
    76     }
       
    77 //EOF