blob: 51f474528eb79cfafd2fc2286c07787fc08bebd8 (
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
|
#include "Swiften/Elements/IQ.h"
namespace Swift {
boost::shared_ptr<IQ> IQ::createRequest(
Type type, const JID& to, const String& id, boost::shared_ptr<Payload> payload) {
boost::shared_ptr<IQ> iq(new IQ(type));
if (to.isValid()) {
iq->setTo(to);
}
iq->setID(id);
if (payload) {
iq->addPayload(payload);
}
return iq;
}
boost::shared_ptr<IQ> IQ::createResult(
const JID& to, const String& id, boost::shared_ptr<Payload> payload) {
boost::shared_ptr<IQ> iq(new IQ(Result));
iq->setTo(to);
iq->setID(id);
if (payload) {
iq->addPayload(payload);
}
return iq;
}
boost::shared_ptr<IQ> IQ::createError(const JID& to, const String& id, Error::Condition condition, Error::Type type) {
boost::shared_ptr<IQ> iq(new IQ(IQ::Error));
iq->setTo(to);
iq->setID(id);
iq->addPayload(boost::shared_ptr<Swift::Error>(new Swift::Error(condition, type)));
return iq;
}
}
|