summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/AuthSuccess.h')
m---------Swiften0
-rw-r--r--Swiften/Elements/AuthSuccess.h22
2 files changed, 0 insertions, 22 deletions
diff --git a/Swiften b/Swiften
new file mode 160000
+Subproject 8213ba16d0043d2461f4b031c881d61dda5a38c
diff --git a/Swiften/Elements/AuthSuccess.h b/Swiften/Elements/AuthSuccess.h
deleted file mode 100644
index 1db1729..0000000
--- a/Swiften/Elements/AuthSuccess.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#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;
- };
-}