summaryrefslogtreecommitdiffstats
blob: e5e719b5821c4041b0bfc0fa007f943e327883b1 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * Copyright (c) 2014-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <memory>
#include <string>

#include <boost/optional.hpp>

#include <Swiften/Base/API.h>
#include <Swiften/Elements/Payload.h>
#include <Swiften/Elements/ResultSet.h>

namespace Swift {
    class SWIFTEN_API MAMFin : public Payload {
        public:
            MAMFin() : isComplete_(false), isStable_(true) {}
            virtual ~MAMFin();

            void setComplete(const bool isComplete) {
                isComplete_ = isComplete;
            }

            bool isComplete() const {
                return isComplete_;
            }

            void setStable(const bool isStable) {
                isStable_ = isStable;
            }

            bool isStable() const {
                return isStable_;
            }

            void setResultSet(std::shared_ptr<ResultSet> resultSet) {
                resultSet_ = resultSet;
            }

            std::shared_ptr<ResultSet> getResultSet() const {
                return resultSet_;
            }

            void setQueryID(const std::string& queryID) {
                queryID_ = queryID;
            }

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


        private:
            bool isComplete_;
            bool isStable_;
            std::shared_ptr<ResultSet> resultSet_;
            boost::optional<std::string> queryID_;
    };
}