signal_op.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. //
  2. // detail/signal_op.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2018 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_DETAIL_SIGNAL_OP_HPP
  11. #define BOOST_ASIO_DETAIL_SIGNAL_OP_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. #include <boost/asio/detail/operation.hpp>
  17. #include <boost/asio/detail/push_options.hpp>
  18. namespace boost {
  19. namespace asio {
  20. namespace detail {
  21. class signal_op
  22. : public operation
  23. {
  24. public:
  25. // The error code to be passed to the completion handler.
  26. boost::system::error_code ec_;
  27. // The signal number to be passed to the completion handler.
  28. int signal_number_;
  29. protected:
  30. signal_op(func_type func)
  31. : operation(func),
  32. signal_number_(0)
  33. {
  34. }
  35. };
  36. } // namespace detail
  37. } // namespace asio
  38. } // namespace boost
  39. #include <boost/asio/detail/pop_options.hpp>
  40. #endif // BOOST_ASIO_DETAIL_SIGNAL_OP_HPP