summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop/BoostASIOEventLoop.h')
-rw-r--r--Swiften/EventLoop/BoostASIOEventLoop.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/Swiften/EventLoop/BoostASIOEventLoop.h b/Swiften/EventLoop/BoostASIOEventLoop.h
index c39aaf5..41304c4 100644
--- a/Swiften/EventLoop/BoostASIOEventLoop.h
+++ b/Swiften/EventLoop/BoostASIOEventLoop.h
@@ -1,13 +1,14 @@
/*
- * Copyright (c) 2015 Isode Limited.
+ * Copyright (c) 2015-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
+#include <memory>
+
#include <boost/asio/io_service.hpp>
-#include <boost/shared_ptr.hpp>
#include <boost/thread.hpp>
#include <Swiften/Base/API.h>
@@ -17,7 +18,7 @@
namespace Swift {
class SWIFTEN_API BoostASIOEventLoop : public EventLoop {
public:
- BoostASIOEventLoop(boost::shared_ptr<boost::asio::io_service> ioService);
+ BoostASIOEventLoop(std::shared_ptr<boost::asio::io_service> ioService);
virtual ~BoostASIOEventLoop();
protected:
@@ -26,7 +27,7 @@ namespace Swift {
virtual void eventPosted();
private:
- boost::shared_ptr<boost::asio::io_service> ioService_;
+ std::shared_ptr<boost::asio::io_service> ioService_;
bool isEventInASIOEventLoop_;
boost::recursive_mutex isEventInASIOEventLoopMutex_;