1234567891011121314151617181920212223242526272829 |
- #ifndef BOOST_INTERPROCESS_CV_STATUS_HPP
- #define BOOST_INTERPROCESS_CV_STATUS_HPP
- #include <boost/core/scoped_enum.hpp>
- namespace boost {
- namespace interprocess {
-
- BOOST_SCOPED_ENUM_DECLARE_BEGIN(cv_status)
- {
- no_timeout,
- timeout
- }
- BOOST_SCOPED_ENUM_DECLARE_END(cv_status)
- }
- }
- #endif
|