/* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include "Swiften/JID/JID.h" #include "Swiften/Base/String.h" #include "Swiften/Elements/IQ.h" #include "Swiften/Elements/RosterPayload.h" #include "Swiften/Queries/Responders/RosterPushResponder.h" #include #include namespace Swift { class IQRouter; class XMPPRoster; class XMPPRosterController { public: XMPPRosterController(IQRouter *iqRouter, boost::shared_ptr xmppRoster); void requestRoster(); boost::shared_ptr getXMPPRoster() {return xmppRoster_;}; void handleRosterReceived(boost::shared_ptr rosterPayload); private: IQRouter* iqRouter_; RosterPushResponder rosterPushResponder_; boost::shared_ptr xmppRoster_; }; }