summaryrefslogtreecommitdiffstats
blob: 17c75274e097de0edcf0f9718c077d6010ad7499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
 * Copyright (c) 2014 Kevin Smith and Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#pragma once

#include <string>

#include <boost/optional.hpp>

#include <Swiften/Base/API.h>
#include <Swiften/Elements/ContainerPayload.h>
#include <Swiften/Elements/Forwarded.h>

namespace Swift {
	class SWIFTEN_API MAMResult : public ContainerPayload<Forwarded> {
		public:
			virtual ~MAMResult();

			void setID(const std::string& id) { id_ = id; }
			const std::string& getID() const { return id_; }

			void setQueryID(const boost::optional<std::string>& queryID) { queryID_ = queryID; }
			const boost::optional<std::string>& getQueryID() const { return queryID_; }

		private:
			std::string id_;
			boost::optional<std::string> queryID_;
	};
}