blob: a0268717ca6ee03740c4a27e28059c290cca1ba1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Copyright (c) 2015-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#include <Swiften/Elements/CarbonsSent.h>
namespace Swift {
CarbonsSent::~CarbonsSent() {
}
void CarbonsSent::setForwarded(std::shared_ptr<Forwarded> forwarded) {
forwarded_ = forwarded;
}
std::shared_ptr<Forwarded> CarbonsSent::getForwarded() const {
return forwarded_;
}
}
|