diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-05-01 20:14:22 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-05-01 20:14:22 (GMT) |
commit | 4fb9430a2e16b3ddf59ccbc1f267e8c98422ca6e (patch) | |
tree | eb3ef9b658946e9725d19927b3b70fe661a6a707 /Swiften/History/HistoryMessage.h | |
parent | 4a90cf8fd5da66c2466bfcfe1e5152d45457b291 (diff) | |
download | swift-contrib-4fb9430a2e16b3ddf59ccbc1f267e8c98422ca6e.zip swift-contrib-4fb9430a2e16b3ddf59ccbc1f267e8c98422ca6e.tar.bz2 |
Fixed compilation.
Diffstat (limited to 'Swiften/History/HistoryMessage.h')
-rw-r--r-- | Swiften/History/HistoryMessage.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Swiften/History/HistoryMessage.h b/Swiften/History/HistoryMessage.h index 5e4782d..461f5de 100644 --- a/Swiften/History/HistoryMessage.h +++ b/Swiften/History/HistoryMessage.h @@ -1,17 +1,18 @@ /* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once +#include <Swiften/JID/JID.h> #include <boost/date_time/posix_time/posix_time_types.hpp> namespace Swift { class HistoryMessage { public: HistoryMessage(const std::string& message, const JID& from, const JID& to, const boost::posix_time::ptime time) : message_(message), from_(from), to_(to), time_(time) { } const std::string& getMessage() const { |