blob: 1a31b89ac6f28ec7ae765bd4849975795273961c (
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
|
/*
* Copyright (c) 2014-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <boost/date_time/posix_time/posix_time.hpp>
#include <boost/optional.hpp>
#include <Swiften/Base/API.h>
#include <Swiften/Elements/Payload.h>
namespace Swift {
class Delay;
class Stanza;
class SWIFTEN_API Forwarded : public Payload {
public:
virtual ~Forwarded();
void setDelay(std::shared_ptr<Delay> delay) { delay_ = delay; }
const std::shared_ptr<Delay>& getDelay() const { return delay_; }
void setStanza(std::shared_ptr<Stanza> stanza) { stanza_ = stanza; }
const std::shared_ptr<Stanza>& getStanza() const { return stanza_; }
private:
std::shared_ptr<Delay> delay_;
std::shared_ptr<Stanza> stanza_;
};
}
|