summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/UIEvents/RequestJoinMUCUIEvent.h')
-rw-r--r--Swift/Controllers/UIEvents/RequestJoinMUCUIEvent.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/Swift/Controllers/UIEvents/RequestJoinMUCUIEvent.h b/Swift/Controllers/UIEvents/RequestJoinMUCUIEvent.h
index a2a4183..5e94290 100644
--- a/Swift/Controllers/UIEvents/RequestJoinMUCUIEvent.h
+++ b/Swift/Controllers/UIEvents/RequestJoinMUCUIEvent.h
@@ -6,10 +6,9 @@
#pragma once
+#include <memory>
#include <string>
-#include <boost/shared_ptr.hpp>
-
#include <Swiften/JID/JID.h>
#include <Swift/Controllers/UIEvents/UIEvent.h>
@@ -17,7 +16,7 @@
namespace Swift {
class RequestJoinMUCUIEvent : public UIEvent {
public:
- typedef boost::shared_ptr<RequestJoinMUCUIEvent> ref;
+ typedef std::shared_ptr<RequestJoinMUCUIEvent> ref;
RequestJoinMUCUIEvent(const JID& room = JID()) : room(room) {
}