cv_status.hpp 650 B

1234567891011121314151617181920212223242526272829
  1. // cv_status.hpp
  2. //
  3. // Copyright (C) 2011 Vicente J. Botet Escriba
  4. // Copyright (C) 2021 Ion Gaztanaga
  5. //
  6. // Distributed under the Boost Software License, Version 1.0. (See
  7. // accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. #ifndef BOOST_INTERPROCESS_CV_STATUS_HPP
  10. #define BOOST_INTERPROCESS_CV_STATUS_HPP
  11. #include <boost/core/scoped_enum.hpp>
  12. namespace boost {
  13. namespace interprocess {
  14. // enum class cv_status;
  15. BOOST_SCOPED_ENUM_DECLARE_BEGIN(cv_status)
  16. {
  17. no_timeout,
  18. timeout
  19. }
  20. BOOST_SCOPED_ENUM_DECLARE_END(cv_status)
  21. } //namespace interprocess
  22. } //namespace boost
  23. #endif // header