|
1 /* |
|
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * This component and the accompanying materials are made available |
|
5 * under the terms of "Eclipse Public License v1.0" |
|
6 * which accompanies this distribution, and is available |
|
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 * |
|
9 * Initial Contributors: |
|
10 * Nokia Corporation - initial contribution. |
|
11 * |
|
12 * Contributors: |
|
13 * |
|
14 * Description: APNSettings implementation header. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef APNCENREPTABLE_H |
|
20 #define APNCENREPTABLE_H |
|
21 |
|
22 #include "mapnsettings.h" |
|
23 #include "connectionmanager.h" |
|
24 |
|
25 namespace CENREP |
|
26 { |
|
27 |
|
28 class CAPNCenRepTable: public CBase, public MAPNSettings |
|
29 { |
|
30 public: |
|
31 |
|
32 static CAPNCenRepTable* NewLC(); |
|
33 |
|
34 virtual ~CAPNCenRepTable(); |
|
35 |
|
36 virtual void CreateL(); |
|
37 |
|
38 virtual void OpenL(); |
|
39 virtual void Close(void); |
|
40 |
|
41 virtual TUint32 GetAPNIdL(TUint32 aMSId); |
|
42 virtual void SetAPNL(TUint32 aMSId, TUint32 aAPNId); |
|
43 virtual void RemoveL(TUint32 aMSId); |
|
44 virtual void SetUseSystemDefaultAPNL(TUint32 aMSId); |
|
45 virtual void SetUseJavaDefaultAPNL(TUint32 aMSId); |
|
46 virtual TBool IsUseSystemDefaultAPNL(TUint32 aMSId); |
|
47 virtual TBool IsUseJavaDefaultAPNL(TUint32 aMSId); |
|
48 virtual TUint32 GetJavaDefaultAPNL(); |
|
49 virtual void SetJavaDefaultAPNL(TUint32 aAPNId); |
|
50 |
|
51 private: |
|
52 |
|
53 }; |
|
54 |
|
55 } // end of namespace CENREP |
|
56 |
|
57 #endif // APNCENREPTABLE_H |