summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/AuthSuccess.h')
-rw-r--r--Swiften/Elements/AuthSuccess.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/Swiften/Elements/AuthSuccess.h b/Swiften/Elements/AuthSuccess.h
index da4d798..1db1729 100644
--- a/Swiften/Elements/AuthSuccess.h
+++ b/Swiften/Elements/AuthSuccess.h
@@ -1,10 +1,22 @@
#pragma once
#include "Swiften/Elements/Element.h"
+#include "Swiften/Base/ByteArray.h"
namespace Swift {
class AuthSuccess : public Element {
public:
AuthSuccess() {}
+
+ const ByteArray& getValue() const {
+ return value;
+ }
+
+ void setValue(const ByteArray& value) {
+ this->value = value;
+ }
+
+ private:
+ ByteArray value;
};
}