fep/aknfep/UiPlugins/AknFepUiInterface/AvkonImpl/src/AknFepPredictiveSettingData.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 02 Feb 2010 01:02:04 +0200
changeset 0 eb1f2e154e89
child 8 4eb1ae11334f
permissions -rw-r--r--
Revision: 201003 Kit: 201005

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0""
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:          
*
*/










/*
 * ============================================================================
 *  Name     : CAknFepPredictiveSettingData from AknFepPredictiveSettingData 
 * ============================================================================
 */

#include "AknFepPredictiveSettingData.h"

CAknFepPredictiveSettingData *CAknFepPredictiveSettingData::NewL()
	{
	CAknFepPredictiveSettingData *self = CAknFepPredictiveSettingData::NewLC();
	CleanupStack::Pop(self);
	return self;
	}

CAknFepPredictiveSettingData *CAknFepPredictiveSettingData::NewLC()
	{
	CAknFepPredictiveSettingData *self = new (ELeave) CAknFepPredictiveSettingData();
	CleanupStack::PushL(self);
	return self;
	}

CAknFepPredictiveSettingData::~CAknFepPredictiveSettingData()
	{
	}

CAknFepPredictiveSettingData::CAknFepPredictiveSettingData()
	{
	}



void CAknFepPredictiveSettingData::LoadL(TInt aAutoWordCompl,
										 TInt aTypingCorrection,
										 TInt aNumberCandidates,
										 TInt aPrimaryCandidate,
										 TInt aPhysicalKeyboards,
										 TInt aAWCBitmask)
    {
    iAutoWordCompl = aAutoWordCompl;
    iTypingCorrection = aTypingCorrection;
    iNumberCandidates = aNumberCandidates;
    iPrimaryCandidate = aPrimaryCandidate;
    iPhysicalKeyboards = aPhysicalKeyboards;
    iAWCBitmask = aAWCBitmask;
    }
    
void CAknFepPredictiveSettingData::SaveL() const
    {
    }
//EOF