diff options
Diffstat (limited to 'Swiften/Elements/VCard.cpp')
| -rw-r--r-- | Swiften/Elements/VCard.cpp | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Swiften/Elements/VCard.cpp b/Swiften/Elements/VCard.cpp new file mode 100644 index 0000000..8262e07 --- /dev/null +++ b/Swiften/Elements/VCard.cpp | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2010 Remko Tronçon | ||
| 3 | * Licensed under the GNU General Public License v3. | ||
| 4 | * See Documentation/Licenses/GPLv3.txt for more information. | ||
| 5 | */ | ||
| 6 | |||
| 7 | #include "Swiften/Elements/VCard.h" | ||
| 8 | |||
| 9 | #include "Swiften/Base/foreach.h" | ||
| 10 | |||
| 11 | namespace Swift { | ||
| 12 | |||
| 13 | VCard::EMailAddress VCard::getPreferredEMailAddress() const { | ||
| 14 | foreach(const EMailAddress& address, emailAddresses_) { | ||
| 15 | if (address.isPreferred) { | ||
| 16 | return address; | ||
| 17 | } | ||
| 18 | } | ||
| 19 | if (emailAddresses_.size() > 0) { | ||
| 20 | return emailAddresses_[0]; | ||
| 21 | } | ||
| 22 | return EMailAddress(); | ||
| 23 | } | ||
| 24 | |||
| 25 | |||
| 26 | } | ||
Swift