123456789101112131415161718192021222324252627 |
- #ifndef BOOST_FIBERS_FUTURE_STATUS_HPP
- #define BOOST_FIBERS_FUTURE_STATUS_HPP
- #include <future>
- #include <boost/config.hpp>
- #include <boost/fiber/detail/config.hpp>
- namespace boost {
- namespace fibers {
- enum class future_status {
- ready = 1,
- timeout,
- deferred
- };
- }}
- #endif
|