equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 #ifndef TIPTVSMPASSWORD_H |
|
23 #define TIPTVSMPASSWORD_H |
|
24 |
|
25 // INCLUDES |
|
26 |
|
27 // CONSTANTS |
|
28 |
|
29 // MACROS |
|
30 |
|
31 // DATA TYPES |
|
32 |
|
33 // FUNCTION PROTOTYPES |
|
34 |
|
35 // FORWARD DECLARATIONS |
|
36 |
|
37 // CLASS DECLARATION |
|
38 |
|
39 /** |
|
40 * Container class for user name and password. |
|
41 */ |
|
42 class TIptvSmPassword |
|
43 { |
|
44 |
|
45 public: // Data |
|
46 |
|
47 /** |
|
48 * User name. |
|
49 */ |
|
50 TBuf<KIptvSmPasswordsDbUserNameMaxLength> iUserName; |
|
51 |
|
52 /** |
|
53 * Password. |
|
54 */ |
|
55 TBuf<KIptvSmPasswordsDbPasswordMaxLength> iPassword; |
|
56 }; |
|
57 |
|
58 #endif // TIPTVSMPASSWORD_H |
|
59 |
|
60 // End of File |