blob: 33902ae7076252e4fc303ffdc2557f168ba93320 (
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
|
/*
* Copyright (c) 2014 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <string>
#include <boost/shared_ptr.hpp>
#include <boost/optional.hpp>
#include <Swiften/Base/API.h>
#include <Swiften/Elements/Form.h>
#include <Swiften/Elements/Payload.h>
#include <Swiften/Elements/ResultSet.h>
namespace Swift {
class SWIFTEN_API MAMQuery : public Payload {
public:
virtual ~MAMQuery();
void setQueryID(const boost::optional<std::string>& queryID) { queryID_ = queryID; }
const boost::optional<std::string>& getQueryID() const { return queryID_; }
void setNode(const boost::optional<std::string>& node) { node_ = node; }
const boost::optional<std::string>& getNode() const { return node_; }
void setForm(boost::shared_ptr<Form> form) { form_ = form; }
const boost::shared_ptr<Form>& getForm() const { return form_; }
void setResultSet(boost::shared_ptr<ResultSet> resultSet) { resultSet_ = resultSet; }
const boost::shared_ptr<ResultSet>& getResultSet() const { return resultSet_; }
private:
boost::optional<std::string> queryID_;
boost::optional<std::string> node_;
boost::shared_ptr<Form> form_;
boost::shared_ptr<ResultSet> resultSet_;
};
}
|