blob: 60f0e8cf7d302332ac07f5b75ed42bb1959f9fea (
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 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <boost/optional.hpp>
#include <boost/date_time/posix_time/posix_time.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(boost::shared_ptr<Delay> delay) { delay_ = delay; }
const boost::shared_ptr<Delay>& getDelay() const { return delay_; }
void setStanza(boost::shared_ptr<Stanza> stanza) { stanza_ = stanza; }
const boost::shared_ptr<Stanza>& getStanza() const { return stanza_; }
private:
boost::shared_ptr<Delay> delay_;
boost::shared_ptr<Stanza> stanza_;
};
}
|