1 /* |
|
2 * Copyright (c) 2005 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: |
|
15 * See class description. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __TPHONECMDPARAMSFIDATA_H |
|
21 #define __TPHONECMDPARAMSFIDATA_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 #include <w32std.h> |
|
26 #include "tphonecommandparam.h" |
|
27 |
|
28 // DATA TYPES |
|
29 |
|
30 // CLASS DECLARATION |
|
31 |
|
32 /** |
|
33 * A parameter class for call header information. |
|
34 */ |
|
35 class TPhoneCmdParamSfiData : public TPhoneUICommandParam |
|
36 { |
|
37 public: |
|
38 |
|
39 /** |
|
40 * C++ default constructor. |
|
41 */ |
|
42 IMPORT_C TPhoneCmdParamSfiData(); |
|
43 |
|
44 public: |
|
45 |
|
46 /** |
|
47 * Sets the call header label text. |
|
48 * @param aLabel is the label |
|
49 */ |
|
50 IMPORT_C void SetNumber( const TDesC& aLabelText ); |
|
51 |
|
52 /** |
|
53 * Sets the call header short label text |
|
54 * @param aShortLabel is the short label |
|
55 */ |
|
56 IMPORT_C void SetName( const TDesC& aShortLabelText ); |
|
57 |
|
58 /** |
|
59 * Returns the call header label text |
|
60 * @return Returns the label |
|
61 */ |
|
62 IMPORT_C const TDesC& Number() const; |
|
63 |
|
64 /** |
|
65 * Returns the call header short label text. |
|
66 * @return Returns the short label |
|
67 */ |
|
68 IMPORT_C const TDesC& Name() const; |
|
69 |
|
70 private: |
|
71 |
|
72 /** |
|
73 * Call header label text |
|
74 */ |
|
75 TPtrC iNumber; |
|
76 |
|
77 /** |
|
78 * Call header short label text |
|
79 */ |
|
80 TPtrC iName; |
|
81 |
|
82 }; |
|
83 |
|
84 #endif // __TPHONECMDPARAMSFIDATA_H |
|
85 |
|
86 // End of File |
|