summaryrefslogtreecommitdiffstats
blob: b8a92976f744d8af7cab47165a1a1de81a5b72cf (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 AuthChallenge : public Element {
		public:
			AuthChallenge(const ByteArray& value = "") : value(value) {
			}

			const ByteArray& getValue() const {
				return value;
			}

			void setValue(const ByteArray& value) {
				this->value = value;
			}

		private:
			ByteArray value;
	};
}