// // placeholders.hpp // ~~~~~~~~~~~~~~~~ // // Copyright (c) 2003-2018 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) // #ifndef BOOST_ASIO_PLACEHOLDERS_HPP #define BOOST_ASIO_PLACEHOLDERS_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif // defined(_MSC_VER) && (_MSC_VER >= 1200) #include #if defined(BOOST_ASIO_HAS_BOOST_BIND) # include #endif // defined(BOOST_ASIO_HAS_BOOST_BIND) #include namespace lslboost { namespace asio { namespace placeholders { #if defined(GENERATING_DOCUMENTATION) /// An argument placeholder, for use with lslboost::bind(), that corresponds to /// the error argument of a handler for any of the asynchronous functions. unspecified error; /// An argument placeholder, for use with lslboost::bind(), that corresponds to /// the bytes_transferred argument of a handler for asynchronous functions such /// as lslboost::asio::basic_stream_socket::async_write_some or /// lslboost::asio::async_write. unspecified bytes_transferred; /// An argument placeholder, for use with lslboost::bind(), that corresponds to /// the iterator argument of a handler for asynchronous functions such as /// lslboost::asio::async_connect. unspecified iterator; /// An argument placeholder, for use with lslboost::bind(), that corresponds to /// the results argument of a handler for asynchronous functions such as /// lslboost::asio::basic_resolver::async_resolve. unspecified results; /// An argument placeholder, for use with lslboost::bind(), that corresponds to /// the results argument of a handler for asynchronous functions such as /// lslboost::asio::async_connect. unspecified endpoint; /// An argument placeholder, for use with lslboost::bind(), that corresponds to /// the signal_number argument of a handler for asynchronous functions such as /// lslboost::asio::signal_set::async_wait. unspecified signal_number; #elif defined(BOOST_ASIO_HAS_BOOST_BIND) # if defined(__BORLANDC__) || defined(__GNUC__) inline lslboost::arg<1> error() { return lslboost::arg<1>(); } inline lslboost::arg<2> bytes_transferred() { return lslboost::arg<2>(); } inline lslboost::arg<2> iterator() { return lslboost::arg<2>(); } inline lslboost::arg<2> results() { return lslboost::arg<2>(); } inline lslboost::arg<2> endpoint() { return lslboost::arg<2>(); } inline lslboost::arg<2> signal_number() { return lslboost::arg<2>(); } # else namespace detail { template struct placeholder { static lslboost::arg& get() { static lslboost::arg result; return result; } }; } # if defined(BOOST_ASIO_MSVC) && (BOOST_ASIO_MSVC < 1400) static lslboost::arg<1>& error = lslboost::asio::placeholders::detail::placeholder<1>::get(); static lslboost::arg<2>& bytes_transferred = lslboost::asio::placeholders::detail::placeholder<2>::get(); static lslboost::arg<2>& iterator = lslboost::asio::placeholders::detail::placeholder<2>::get(); static lslboost::arg<2>& results = lslboost::asio::placeholders::detail::placeholder<2>::get(); static lslboost::arg<2>& endpoint = lslboost::asio::placeholders::detail::placeholder<2>::get(); static lslboost::arg<2>& signal_number = lslboost::asio::placeholders::detail::placeholder<2>::get(); # else namespace { lslboost::arg<1>& error = lslboost::asio::placeholders::detail::placeholder<1>::get(); lslboost::arg<2>& bytes_transferred = lslboost::asio::placeholders::detail::placeholder<2>::get(); lslboost::arg<2>& iterator = lslboost::asio::placeholders::detail::placeholder<2>::get(); lslboost::arg<2>& results = lslboost::asio::placeholders::detail::placeholder<2>::get(); lslboost::arg<2>& endpoint = lslboost::asio::placeholders::detail::placeholder<2>::get(); lslboost::arg<2>& signal_number = lslboost::asio::placeholders::detail::placeholder<2>::get(); } // namespace # endif # endif #endif } // namespace placeholders } // namespace asio } // namespace lslboost #include #endif // BOOST_ASIO_PLACEHOLDERS_HPP