summaryrefslogtreecommitdiffstats
blob: 1db172933e1bace50aee5c2d950055ac8f1eaa18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
	};
}