diff -r 8ab6687fb94c -r 3adadc800673 telephonyprotocols/umtsgprsscpr/inc/UmtsGprs_subconnProvFactory.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/telephonyprotocols/umtsgprsscpr/inc/UmtsGprs_subconnProvFactory.h Fri Jun 11 14:49:29 2010 +0300 @@ -0,0 +1,56 @@ +// Copyright (c) 2005-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: +// Umts/Gprs SubConnection Provider Facory header file +// +// + +/** + @file + @internalComponent +*/ + + +#ifndef UMTSGPRS_SUBCONNPROVFACTORY_H +#define UMTSGPRS_SUBCONNPROVFACTORY_H + +#include +#include +#include + +// The ECOM DLL Uid and Factory Uid for the UmtsGprsSCPR + +const TUint KUmtsGprsSubConnectionProviderFactoryId = 0x1020D45F; + +class CUmtsGprsSubConnProvdFactory : public CSubConnectionProviderFactoryBase +/** + +@internalTechnology +@released Since 9.3 +*/ + { +public: + static CUmtsGprsSubConnProvdFactory* NewL(TAny* aConstructionParameters); + +protected: + CUmtsGprsSubConnProvdFactory(TUint aFactoryId, CSubConnectionFactoryContainer& aParentContainer); + virtual ~CUmtsGprsSubConnProvdFactory(); + + // methods to be overriden for CSubConnectionProviderFactory + virtual CSubConnectionProviderBase* DoCreateProviderL(CConnectionProviderBase& aConnProvider, RSubConnection::TSubConnType aType); + + }; + + +#endif +// UMTSGPRS_SUBCONNPROVFACTORY_H