/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include "Swiften/Elements/RosterItemPayload.h" #include "Swiften/Base/String.h" #include "Swiften/JID/JID.h" namespace Swift { class LinkLocalService; class LinkLocalServiceBrowser; class RosterPayload; class Presence; class LinkLocalPresenceManager : public boost::bsignals::trackable { public: LinkLocalPresenceManager(LinkLocalServiceBrowser*); boost::shared_ptr getRoster() const; std::vector > getAllPresence() const; boost::optional getServiceForJID(const JID&) const; boost::signal)> onRosterChanged; boost::signal)> onPresenceChanged; private: void handleServiceAdded(const LinkLocalService&); void handleServiceChanged(const LinkLocalService&); void handleServiceRemoved(const LinkLocalService&); RosterItemPayload getRosterItem(const LinkLocalService& service) const; String getRosterName(const LinkLocalService& service) const; boost::shared_ptr getPresence(const LinkLocalService& service) const; private: LinkLocalServiceBrowser* browser; }; }