|
1 /* |
|
2 * Copyright (c) 2007 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: Implementation of inline methods |
|
15 * |
|
16 */ |
|
17 |
|
18 // --------------------------------------------------------------------------- |
|
19 // CNcsEmailAddressObject::EmailAddress |
|
20 // --------------------------------------------------------------------------- |
|
21 // |
|
22 inline const TDesC& CNcsEmailAddressObject::EmailAddress() const |
|
23 { |
|
24 return *iEmailAddress; |
|
25 } |
|
26 |
|
27 // --------------------------------------------------------------------------- |
|
28 // CNcsEmailAddressObject::DisplayName |
|
29 // --------------------------------------------------------------------------- |
|
30 // |
|
31 inline const TDesC& CNcsEmailAddressObject::DisplayName() const |
|
32 { |
|
33 return *iDisplayName; |
|
34 } |
|
35 |
|
36 // --------------------------------------------------------------------------- |
|
37 // CNcsEmailAddressObject::IsUserAdded |
|
38 // --------------------------------------------------------------------------- |
|
39 // |
|
40 inline TBool CNcsEmailAddressObject::IsUserAdded() const |
|
41 { |
|
42 return iUserAdded; |
|
43 } |
|
44 |
|
45 // --------------------------------------------------------------------------- |
|
46 // CNcsEmailAddressObject::SetDisplayFull |
|
47 // --------------------------------------------------------------------------- |
|
48 // |
|
49 inline void CNcsEmailAddressObject::SetDisplayFull( TBool aDisplayFull ) |
|
50 { |
|
51 iDisplayFull = aDisplayFull; |
|
52 } |
|
53 |
|
54 // --------------------------------------------------------------------------- |
|
55 // CNcsEmailAddressObject::DisplayFull |
|
56 // --------------------------------------------------------------------------- |
|
57 // |
|
58 inline TBool CNcsEmailAddressObject::DisplayFull() const |
|
59 { |
|
60 return iDisplayFull; |
|
61 } |