summaryrefslogtreecommitdiffstats
blob: 08b2e1323696fb4c0c0eb59fc14cc60c51a4bace (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 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Elements/CarbonsSent.h>

namespace Swift {
	CarbonsSent::~CarbonsSent() {
		
	}

	void CarbonsSent::setForwarded(boost::shared_ptr<Forwarded> forwarded) {
		forwarded_ = forwarded;
	}

	boost::shared_ptr<Forwarded> CarbonsSent::getForwarded() const {
		return forwarded_;
	}
}