summaryrefslogtreecommitdiff
path: root/boost/asio/io_context.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/asio/io_context.hpp')
-rw-r--r--boost/asio/io_context.hpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/boost/asio/io_context.hpp b/boost/asio/io_context.hpp
index 51377467ea..1fb3864451 100644
--- a/boost/asio/io_context.hpp
+++ b/boost/asio/io_context.hpp
@@ -2,7 +2,7 @@
// io_context.hpp
// ~~~~~~~~~~~~~~
//
-// Copyright (c) 2003-2018 Christopher M. Kohlhoff (chris at kohlhoff dot com)
+// Copyright (c) 2003-2019 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
@@ -595,6 +595,11 @@ public:
#endif // !defined(BOOST_ASIO_NO_DEPRECATED)
private:
+#if !defined(BOOST_ASIO_NO_DEPRECATED)
+ struct initiate_dispatch;
+ struct initiate_post;
+#endif // !defined(BOOST_ASIO_NO_DEPRECATED)
+
// Helper function to add the implementation.
BOOST_ASIO_DECL impl_type& add_impl(impl_type* impl);
@@ -769,10 +774,6 @@ public:
/// Get the io_context associated with the work.
boost::asio::io_context& get_io_context();
- /// (Deprecated: Use get_io_context().) Get the io_context associated with the
- /// work.
- boost::asio::io_context& get_io_service();
-
private:
// Prevent assignment.
void operator=(const work& other);
@@ -790,11 +791,6 @@ public:
/// Get the io_context object that owns the service.
boost::asio::io_context& get_io_context();
-#if !defined(BOOST_ASIO_NO_DEPRECATED)
- /// Get the io_context object that owns the service.
- boost::asio::io_context& get_io_service();
-#endif // !defined(BOOST_ASIO_NO_DEPRECATED)
-
private:
/// Destroy all user-defined handler objects owned by the service.
BOOST_ASIO_DECL virtual void shutdown();