Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-15 10:09:28

0001 #ifndef BOOST_THREAD_CONDITION_HPP
0002 #define BOOST_THREAD_CONDITION_HPP
0003 //  (C) Copyright 2007 Anthony Williams
0004 //
0005 //  Distributed under the Boost Software License, Version 1.0. (See
0006 //  accompanying file LICENSE_1_0.txt or copy at
0007 //  http://www.boost.org/LICENSE_1_0.txt)
0008 
0009 #include <boost/thread/detail/config.hpp>
0010 
0011 #if defined BOOST_THREAD_PROVIDES_CONDITION
0012 
0013 #include <boost/thread/condition_variable.hpp>
0014 
0015 namespace boost
0016 {
0017     typedef condition_variable_any condition;
0018 }
0019 
0020 #endif
0021 #endif