diff -r 35488577e233 -r 2fa1fa551b0b cellular/telephonysettings/src/PSetCallDivertingCreator.cpp --- a/cellular/telephonysettings/src/PSetCallDivertingCreator.cpp Mon Aug 23 15:50:31 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,68 +0,0 @@ -/* -* Copyright (c) 2008-2008 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: Implementation of CPSetCallDivertingCreator class. -* -*/ - - - -// INCLUDE FILES -#include "psetcalldivertingbasicimpl.h" -#include "psetcalldivertingdualaffectimpl.h" -#include "psetcalldivertingcreator.h" -#include "psetvariationproxy.h" - -#include -#include -#include // telephony service local variation keys. -#include - - -// ============================ MEMBER FUNCTIONS =============================== - -// --------------------------------------------------------------------------- -// CreateCallDivertingL -// --------------------------------------------------------------------------- -// -MCallDiverting* CPSetCallDivertingCreator::CreateCallDivertingL( - MPsetDivertObserver& aObserver, - RMobilePhone& aPhone, - CPsetCallDiverting* aDivert ) - { - if( IsDivertDualAffectFeatureEnabledL() ) - { - return CPSetCallDivertingDualAffectImpl::NewL( aObserver, aPhone, aDivert ); - } - else - { - return CPSetCallDivertingBasicImpl::NewL( aObserver, aPhone, aDivert ); - } - } - -// --------------------------------------------------------------------------- -// IsDivertDualAffectFeatureEnabledL -// --------------------------------------------------------------------------- -// -TBool CPSetCallDivertingCreator::IsDivertDualAffectFeatureEnabledL() - { - TBool retValue(EFalse); - CPSetVariationProxy* variationProxy = - CPSetVariationProxy::NewL( KCRUidTelSrvVariation, KTelSrvVariationFlags ); - CleanupStack::PushL( variationProxy ); - retValue = variationProxy->IsFeatureEnabled( KTelephonyLVFlagDivertDualAffect ); - CleanupStack::PopAndDestroy( variationProxy ); - return retValue; - } - -// End of File