|
||||
File indexing completed on 2025-01-18 09:38:32
0001 // cv_status.hpp 0002 // 0003 // Copyright (C) 2011 Vicente J. Botet Escriba 0004 // Copyright (C) 2021 Ion Gaztanaga 0005 // 0006 // Distributed under the Boost Software License, Version 1.0. (See 0007 // accompanying file LICENSE_1_0.txt or copy at 0008 // http://www.boost.org/LICENSE_1_0.txt) 0009 0010 #ifndef BOOST_INTERPROCESS_CV_STATUS_HPP 0011 #define BOOST_INTERPROCESS_CV_STATUS_HPP 0012 0013 #include <boost/core/scoped_enum.hpp> 0014 0015 namespace boost { 0016 namespace interprocess { 0017 0018 // enum class cv_status; 0019 BOOST_SCOPED_ENUM_DECLARE_BEGIN(cv_status) 0020 { 0021 no_timeout, 0022 timeout 0023 } 0024 BOOST_SCOPED_ENUM_DECLARE_END(cv_status) 0025 0026 } //namespace interprocess 0027 } //namespace boost 0028 0029 #endif // header
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |