diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-09-20 20:38:30 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-09-20 20:38:30 (GMT) |
commit | 703a1c28c3c87ac0fb365ff0683d7c64fcdd2210 (patch) | |
tree | d8a6628f64403df172dafc6a85a8b03fab3e455e /Swiften/Queries/Request.h | |
parent | 5c1ec7985808aba408bec724f5b90fed0dbcb7ce (diff) | |
download | swift-contrib-703a1c28c3c87ac0fb365ff0683d7c64fcdd2210.zip swift-contrib-703a1c28c3c87ac0fb365ff0683d7c64fcdd2210.tar.bz2 |
Added ClientBlockListManager.
Diffstat (limited to 'Swiften/Queries/Request.h')
-rw-r--r-- | Swiften/Queries/Request.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Swiften/Queries/Request.h b/Swiften/Queries/Request.h index a7139cf..677a758 100644 --- a/Swiften/Queries/Request.h +++ b/Swiften/Queries/Request.h @@ -54,19 +54,18 @@ namespace Swift { boost::shared_ptr<Payload> getPayload() const { return payload_; } virtual void handleResponse(boost::shared_ptr<Payload>, boost::shared_ptr<ErrorPayload>) = 0; private: bool handleIQ(boost::shared_ptr<IQ>); bool isCorrectSender(const JID& jid); - bool isAccountJID(const JID& jid); private: IQRouter* router_; IQ::Type type_; JID receiver_; boost::shared_ptr<Payload> payload_; std::string id_; bool sent_; }; |