summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/UIEvents/InviteToMUCUIEvent.h')
-rw-r--r--Swift/Controllers/UIEvents/InviteToMUCUIEvent.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Swift/Controllers/UIEvents/InviteToMUCUIEvent.h b/Swift/Controllers/UIEvents/InviteToMUCUIEvent.h
index e1416de..414582d 100644
--- a/Swift/Controllers/UIEvents/InviteToMUCUIEvent.h
+++ b/Swift/Controllers/UIEvents/InviteToMUCUIEvent.h
@@ -12,10 +12,9 @@
#pragma once
+#include <memory>
#include <vector>
-#include <boost/shared_ptr.hpp>
-
#include <Swiften/JID/JID.h>
#include <Swift/Controllers/UIEvents/UIEvent.h>
@@ -23,7 +22,7 @@
namespace Swift {
class InviteToMUCUIEvent : public UIEvent {
public:
- typedef boost::shared_ptr<InviteToMUCUIEvent> ref;
+ typedef std::shared_ptr<InviteToMUCUIEvent> ref;
InviteToMUCUIEvent(const JID& room, const std::vector<JID>& JIDsToInvite, const std::string& reason) : room_(room), invite_(JIDsToInvite), reason_(reason) {
}