equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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 : Definition of service provider settings |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef SVPSETTINGS_H |
|
20 #define SVPSETTINGS_H |
|
21 |
|
22 #include <e32base.h> |
|
23 #include <spdefinitions.h> |
|
24 #include <e32cmn.h> |
|
25 |
|
26 class CSPSettings; |
|
27 class CSPProperty; |
|
28 |
|
29 /** |
|
30 * Defines settings reader for VCC |
|
31 * |
|
32 * @code |
|
33 * @endcode |
|
34 * |
|
35 * @since S60 v3.2 |
|
36 */ |
|
37 class SvpSettings |
|
38 { |
|
39 public: |
|
40 |
|
41 /** |
|
42 * |
|
43 * |
|
44 * @since S60 v3.2 |
|
45 * @return |
|
46 */ |
|
47 static TInt IntPropertyL( TUint aServiceId, |
|
48 TServicePropertyName aPropertyName ); |
|
49 |
|
50 |
|
51 // No copy, assigment or creation of this class. |
|
52 |
|
53 private: |
|
54 /** |
|
55 * Assigment operator |
|
56 * |
|
57 * @since S60 v3.2 |
|
58 */ |
|
59 SvpSettings& operator = ( const SvpSettings& ); |
|
60 |
|
61 /** |
|
62 * Default C++ constructor |
|
63 * |
|
64 * @since S60 v3.2 |
|
65 */ |
|
66 SvpSettings(); |
|
67 |
|
68 |
|
69 /** |
|
70 * Copy constructor |
|
71 * |
|
72 * @since S60 v3.2 |
|
73 */ |
|
74 SvpSettings( const SvpSettings& ); |
|
75 |
|
76 }; |
|
77 |
|
78 #endif // SVPSETTINGS_H |
|
79 |