File indexing completed on 2025-01-18 09:52:47
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef BOOST_THREAD_FUTURES_FUTURE_STATUS_HPP
0009 #define BOOST_THREAD_FUTURES_FUTURE_STATUS_HPP
0010
0011 #include <boost/thread/detail/config.hpp>
0012 #include <boost/core/scoped_enum.hpp>
0013
0014 namespace boost
0015 {
0016
0017 BOOST_SCOPED_ENUM_DECLARE_BEGIN(future_status)
0018 {
0019 ready,
0020 timeout,
0021 deferred
0022 }
0023 BOOST_SCOPED_ENUM_DECLARE_END(future_status)
0024 namespace future_state
0025 {
0026 enum state { uninitialized, waiting, ready, moved, deferred };
0027 }
0028 }
0029
0030 #endif