#include "Swiften/Roster/XMPPRoster.h" namespace Swift { void XMPPRoster::addContact(const JID& jid, const String& name, const std::vector& groups) { JID bareJID(jid.toBare()); bool exists = containsJID(bareJID); if (exists) { entries_.erase(bareJID); } entries_[bareJID] = std::pair >(name, groups); if (exists) { onJIDUpdated(bareJID); } else { onJIDAdded(bareJID); } } void XMPPRoster::removeContact(const JID& jid) { entries_.erase(JID(jid.toBare())); onJIDRemoved(jid); } bool XMPPRoster::containsJID(const JID& jid) { return entries_.find(JID(jid.toBare())) != entries_.end(); } const String& XMPPRoster::getNameForJID(const JID& jid) { return entries_[JID(jid.toBare())].first; } const std::vector& XMPPRoster::getGroupsForJID(const JID& jid) { return entries_[JID(jid.toBare())].second; } }