Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:35:35

0001 
0002 //          Copyright Oliver Kowalke 2013.
0003 // Distributed under the Boost Software License, Version 1.0.
0004 //    (See accompanying file LICENSE_1_0.txt or copy at
0005 //          http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 #ifndef BOOST_FIBERS_FUTURE_STATUS_HPP
0008 #define BOOST_FIBERS_FUTURE_STATUS_HPP
0009 
0010 #include <future>
0011 
0012 #include <boost/config.hpp>
0013 
0014 #include <boost/fiber/detail/config.hpp>
0015 
0016 namespace boost {
0017 namespace fibers {
0018 
0019 enum class future_status {
0020     ready = 1,
0021     timeout,
0022     deferred
0023 };
0024 
0025 }}
0026 
0027 #endif // BOOST_FIBERS_FUTURE_STATUS_HPP