diff -r 6b1d113cdff3 -r 6638e7f4bd8f telephonyprotocols/pdplayer/src/PDPSCPRFactory.cpp --- a/telephonyprotocols/pdplayer/src/PDPSCPRFactory.cpp Mon May 03 13:37:20 2010 +0300 +++ b/telephonyprotocols/pdplayer/src/PDPSCPRFactory.cpp Thu May 06 15:10:38 2010 +0100 @@ -1,70 +1,70 @@ -// Copyright (c) 2006-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: -// PDP SubConnection Provider factory class definition. -// -// - -/** - @file - @internalComponent -*/ - -#include -#include "PDPSCPRFactory.h" -#include "PDPSCPR.h" -#include "PDPDeftSCPR.h" -#include - -#include - -using namespace ESock; - -//-========================================================= -// -// CPDPSubConnectionProviderFactory methods -// -//-========================================================= -CPDPSubConnectionProviderFactory* CPDPSubConnectionProviderFactory::NewL(TAny* aParentContainer) - { - return new (ELeave) CPDPSubConnectionProviderFactory(TUid::Uid(CPDPSubConnectionProviderFactory::iUid), - *reinterpret_cast(aParentContainer)); - } - -CPDPSubConnectionProviderFactory::CPDPSubConnectionProviderFactory(TUid aFactoryId, ESock::CSubConnectionFactoryContainer& aParentContainer) - : CSubConnectionProviderFactoryBase(aFactoryId, aParentContainer) - { - } - -ESock::ACommsFactoryNodeId* CPDPSubConnectionProviderFactory::DoCreateObjectL(ESock::TFactoryQueryBase& aQuery) - { - const TDefaultSCPRFactoryQuery& query = static_cast(aQuery); - CSubConnectionProviderBase* provider = NULL; - if (query.iSCPRType == RSubConnection::ECreateNew) - { - provider = CPDPSubConnectionProvider::NewL(*this); - ESOCK_DEBUG_REGISTER_GENERAL_NODE(iUid, provider); - } - else if (query.iSCPRType == RSubConnection::EAttachToDefault) - { - provider = CPDPDefaultSubConnectionProvider::NewL(*this); - ESOCK_DEBUG_REGISTER_GENERAL_NODE(iUid, provider); - } - else - { - User::Leave(KErrNotSupported); - } - return provider; - } - - +// Copyright (c) 2006-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: +// PDP SubConnection Provider factory class definition. +// +// + +/** + @file + @internalComponent +*/ + +#include +#include "PDPSCPRFactory.h" +#include "PDPSCPR.h" +#include "PDPDeftSCPR.h" +#include + +#include + +using namespace ESock; + +//-========================================================= +// +// CPDPSubConnectionProviderFactory methods +// +//-========================================================= +CPDPSubConnectionProviderFactory* CPDPSubConnectionProviderFactory::NewL(TAny* aParentContainer) + { + return new (ELeave) CPDPSubConnectionProviderFactory(TUid::Uid(CPDPSubConnectionProviderFactory::iUid), + *reinterpret_cast(aParentContainer)); + } + +CPDPSubConnectionProviderFactory::CPDPSubConnectionProviderFactory(TUid aFactoryId, ESock::CSubConnectionFactoryContainer& aParentContainer) + : CSubConnectionProviderFactoryBase(aFactoryId, aParentContainer) + { + } + +ESock::ACommsFactoryNodeId* CPDPSubConnectionProviderFactory::DoCreateObjectL(ESock::TFactoryQueryBase& aQuery) + { + const TDefaultSCPRFactoryQuery& query = static_cast(aQuery); + CSubConnectionProviderBase* provider = NULL; + if (query.iSCPRType == RSubConnection::ECreateNew) + { + provider = CPDPSubConnectionProvider::NewL(*this); + ESOCK_DEBUG_REGISTER_GENERAL_NODE(iUid, provider); + } + else if (query.iSCPRType == RSubConnection::EAttachToDefault) + { + provider = CPDPDefaultSubConnectionProvider::NewL(*this); + ESOCK_DEBUG_REGISTER_GENERAL_NODE(iUid, provider); + } + else + { + User::Leave(KErrNotSupported); + } + return provider; + } + +