equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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 the License "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: MPSettingsUDPPortSettingItem.h* |
|
15 */ |
|
16 |
|
17 |
|
18 // Version : %version: 3 % |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 #ifndef CMPSETTINGSUDPPORTSETTINGITEM_H |
|
24 #define CMPSETTINGSUDPPORTSETTINGITEM_H |
|
25 |
|
26 // INCLUDES |
|
27 #include <aknsettingitemlist.h> |
|
28 |
|
29 // CLASS DECLARATION |
|
30 |
|
31 /** |
|
32 * ?one_line_short_description. |
|
33 * ?other_description_lines |
|
34 * |
|
35 * @lib ?library |
|
36 * @since ?Series60_version |
|
37 */ |
|
38 class CMPSettingsUDPPortSettingItem : public CAknIntegerEdwinSettingItem |
|
39 { |
|
40 public: // Constructors and destructor |
|
41 |
|
42 |
|
43 /** |
|
44 * C++ default constructor. |
|
45 */ |
|
46 CMPSettingsUDPPortSettingItem(TInt aIdentifier, |
|
47 TInt& aValue, |
|
48 TInt& aRefValue); |
|
49 |
|
50 /** |
|
51 * Destructor. |
|
52 */ |
|
53 virtual ~CMPSettingsUDPPortSettingItem(); |
|
54 |
|
55 public: // Functions from base classes |
|
56 |
|
57 /** |
|
58 * From CAknIntegerEdwinSettingItem |
|
59 */ |
|
60 void EditItemL(TBool aCalledFromMenu); |
|
61 |
|
62 private: |
|
63 TInt& iRefValue; |
|
64 }; |
|
65 |
|
66 #endif // CMPSETTINGSUDPPORTSETTINGITEM_H |
|
67 |
|
68 // End of File |