blob: 1c972dc959c5fd7a8abed8134c933649d0110a77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef SWIFTEN_Request_H
#define SWIFTEN_Request_H
#include <boost/shared_ptr.hpp>
#include <boost/optional.hpp>
#include <boost/enable_shared_from_this.hpp>
#include "Swiften/Base/String.h"
#include "Swiften/Queries/IQHandler.h"
#include "Swiften/Elements/IQ.h"
#include "Swiften/Elements/Payload.h"
#include "Swiften/Elements/Error.h"
#include "Swiften/JID/JID.h"
namespace Swift {
class Request : public IQHandler, public boost::enable_shared_from_this<Request> {
public:
Request(
IQ::Type type,
const JID& receiver,
boost::shared_ptr<Payload> payload,
IQRouter* router);
void send();
protected:
virtual void handleResponse(boost::shared_ptr<Payload>, boost::optional<Error>) = 0;
private:
bool handleIQ(boost::shared_ptr<IQ>);
private:
IQRouter* router_;
IQ::Type type_;
JID receiver_;
boost::shared_ptr<Payload> payload_;
String id_;
bool sent_;
};
}
#endif
|