44
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
// Umts/Gprs SubConnection Provider Facory header file
|
|
15 |
//
|
|
16 |
//
|
|
17 |
|
|
18 |
/**
|
|
19 |
@file
|
|
20 |
@internalComponent
|
|
21 |
*/
|
|
22 |
|
|
23 |
|
|
24 |
#ifndef UMTSGPRS_SUBCONNPROVFACTORY_H
|
|
25 |
#define UMTSGPRS_SUBCONNPROVFACTORY_H
|
|
26 |
|
|
27 |
#include <ss_subconnprov.h>
|
|
28 |
#include <comms-infras/nifif.h>
|
|
29 |
#include <networking/mspudmaninterface.h>
|
|
30 |
|
|
31 |
// The ECOM DLL Uid and Factory Uid for the UmtsGprsSCPR
|
|
32 |
|
|
33 |
const TUint KUmtsGprsSubConnectionProviderFactoryId = 0x1020D45F;
|
|
34 |
|
|
35 |
class CUmtsGprsSubConnProvdFactory : public CSubConnectionProviderFactoryBase
|
|
36 |
/**
|
|
37 |
|
|
38 |
@internalTechnology
|
|
39 |
@released Since 9.3
|
|
40 |
*/
|
|
41 |
{
|
|
42 |
public:
|
|
43 |
static CUmtsGprsSubConnProvdFactory* NewL(TAny* aConstructionParameters);
|
|
44 |
|
|
45 |
protected:
|
|
46 |
CUmtsGprsSubConnProvdFactory(TUint aFactoryId, CSubConnectionFactoryContainer& aParentContainer);
|
|
47 |
virtual ~CUmtsGprsSubConnProvdFactory();
|
|
48 |
|
|
49 |
// methods to be overriden for CSubConnectionProviderFactory
|
|
50 |
virtual CSubConnectionProviderBase* DoCreateProviderL(CConnectionProviderBase& aConnProvider, RSubConnection::TSubConnType aType);
|
|
51 |
|
|
52 |
};
|
|
53 |
|
|
54 |
|
|
55 |
#endif
|
|
56 |
// UMTSGPRS_SUBCONNPROVFACTORY_H
|