blob: 8a0679fd4ff6e89fdaa3929032dbd2c936766417 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#pragma once
#include "Swiften/Base/ByteArray.h"
#include "Swiften/Elements/Element.h"
namespace Swift {
class AuthResponse : public Element {
public:
AuthResponse(const ByteArray& value = "") : value(value) {
}
const ByteArray& getValue() const {
return value;
}
void setValue(const ByteArray& value) {
this->value = value;
}
private:
ByteArray value;
};
}
|