diff options
Diffstat (limited to 'Swift/Controllers/HistoryController.h')
-rw-r--r-- | Swift/Controllers/HistoryController.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Swift/Controllers/HistoryController.h b/Swift/Controllers/HistoryController.h index 5c0378a..babda8a 100644 --- a/Swift/Controllers/HistoryController.h +++ b/Swift/Controllers/HistoryController.h @@ -10,6 +10,7 @@ #include <boost/date_time/posix_time/posix_time.hpp> #include <vector> #include <set> +#include <Swiften/Base/boost_bsignals.h> namespace Swift { class HistoryManager; @@ -25,6 +26,8 @@ namespace Swift { std::vector<HistoryMessage> getMessages(const JID& selfJID, const JID& contactJID, bool isGroupChat) const; void getAllContacts(const JID& selfJID, std::set<JID>& mucs, std::set<JID>& contacts) const; + boost::signal<void (const HistoryMessage&)> onNewMessage; + private: HistoryManager* localHistory_; bool remoteArchiveSupported_; |