summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/HistoryController.h')
-rw-r--r--Swift/Controllers/HistoryController.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/Swift/Controllers/HistoryController.h b/Swift/Controllers/HistoryController.h
index 8c86409..0bdbb35 100644
--- a/Swift/Controllers/HistoryController.h
+++ b/Swift/Controllers/HistoryController.h
@@ -1,18 +1,24 @@
/*
* Copyright (c) 2012 Catalin Badea
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
+/*
+ * Copyright (c) 2015 Isode Limited.
+ * All rights reserved.
+ * See the COPYING file for more information.
+ */
+
#pragma once
-#include <Swiften/JID/JID.h>
-#include <boost/date_time/posix_time/posix_time.hpp>
#include <vector>
-#include <set>
+
+#include <boost/date_time/posix_time/posix_time.hpp>
+
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/History/HistoryMessage.h>
#include <Swiften/History/HistoryStorage.h>
namespace Swift {
class JID;
@@ -32,9 +38,8 @@ namespace Swift {
boost::posix_time::ptime getLastTimeStampFromMUC(const JID& selfJID, const JID& mucJID);
boost::signal<void (const HistoryMessage&)> onNewMessage;
private:
HistoryStorage* localHistory_;
- bool remoteArchiveSupported_;
};
}