/* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include namespace Swift { class SetInBandRegistrationRequest : public Request { public: typedef boost::shared_ptr ref; static ref create(const JID& to, InBandRegistrationPayload::ref payload, IQRouter* router) { return ref(new SetInBandRegistrationRequest(to, payload, router)); } private: SetInBandRegistrationRequest(const JID& to, InBandRegistrationPayload::ref payload, IQRouter* router) : Request(IQ::Set, to, InBandRegistrationPayload::ref(payload), router) { } virtual void handleResponse(boost::shared_ptr payload, ErrorPayload::ref error) { onResponse(payload, error); } public: boost::signal, ErrorPayload::ref)> onResponse; }; }