placeholders.hpp 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. //
  2. // placeholders.hpp
  3. // ~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef BOOST_ASIO_PLACEHOLDERS_HPP
  11. #define BOOST_ASIO_PLACEHOLDERS_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include <boost/asio/detail/config.hpp>
  16. #if defined(BOOST_ASIO_HAS_BOOST_BIND)
  17. # include <boost/bind/arg.hpp>
  18. #endif // defined(BOOST_ASIO_HAS_BOOST_BIND)
  19. #include <boost/asio/detail/push_options.hpp>
  20. namespace boost {
  21. namespace asio {
  22. namespace placeholders {
  23. #if defined(GENERATING_DOCUMENTATION)
  24. /// An argument placeholder, for use with boost::bind(), that corresponds to
  25. /// the error argument of a handler for any of the asynchronous functions.
  26. unspecified error;
  27. /// An argument placeholder, for use with boost::bind(), that corresponds to
  28. /// the bytes_transferred argument of a handler for asynchronous functions such
  29. /// as boost::asio::basic_stream_socket::async_write_some or
  30. /// boost::asio::async_write.
  31. unspecified bytes_transferred;
  32. /// An argument placeholder, for use with boost::bind(), that corresponds to
  33. /// the iterator argument of a handler for asynchronous functions such as
  34. /// boost::asio::basic_resolver::async_resolve.
  35. unspecified iterator;
  36. /// An argument placeholder, for use with boost::bind(), that corresponds to
  37. /// the signal_number argument of a handler for asynchronous functions such as
  38. /// boost::asio::signal_set::async_wait.
  39. unspecified signal_number;
  40. #elif defined(BOOST_ASIO_HAS_BOOST_BIND)
  41. # if defined(__BORLANDC__) || defined(__GNUC__)
  42. inline boost::arg<1> error()
  43. {
  44. return boost::arg<1>();
  45. }
  46. inline boost::arg<2> bytes_transferred()
  47. {
  48. return boost::arg<2>();
  49. }
  50. inline boost::arg<2> iterator()
  51. {
  52. return boost::arg<2>();
  53. }
  54. inline boost::arg<2> signal_number()
  55. {
  56. return boost::arg<2>();
  57. }
  58. # else
  59. namespace detail
  60. {
  61. template <int Number>
  62. struct placeholder
  63. {
  64. static boost::arg<Number>& get()
  65. {
  66. static boost::arg<Number> result;
  67. return result;
  68. }
  69. };
  70. }
  71. # if defined(BOOST_ASIO_MSVC) && (BOOST_ASIO_MSVC < 1400)
  72. static boost::arg<1>& error
  73. = boost::asio::placeholders::detail::placeholder<1>::get();
  74. static boost::arg<2>& bytes_transferred
  75. = boost::asio::placeholders::detail::placeholder<2>::get();
  76. static boost::arg<2>& iterator
  77. = boost::asio::placeholders::detail::placeholder<2>::get();
  78. static boost::arg<2>& signal_number
  79. = boost::asio::placeholders::detail::placeholder<2>::get();
  80. # else
  81. namespace
  82. {
  83. boost::arg<1>& error
  84. = boost::asio::placeholders::detail::placeholder<1>::get();
  85. boost::arg<2>& bytes_transferred
  86. = boost::asio::placeholders::detail::placeholder<2>::get();
  87. boost::arg<2>& iterator
  88. = boost::asio::placeholders::detail::placeholder<2>::get();
  89. boost::arg<2>& signal_number
  90. = boost::asio::placeholders::detail::placeholder<2>::get();
  91. } // namespace
  92. # endif
  93. # endif
  94. #endif
  95. } // namespace placeholders
  96. } // namespace asio
  97. } // namespace boost
  98. #include <boost/asio/detail/pop_options.hpp>
  99. #endif // BOOST_ASIO_PLACEHOLDERS_HPP