locks.hpp 572 B

1234567891011121314151617
  1. // Distributed under the Boost Software License, Version 1.0. (See
  2. // accompanying file LICENSE_1_0.txt or copy at
  3. // http://www.boost.org/LICENSE_1_0.txt)
  4. // (C) Copyright 2007 Anthony Williams
  5. // (C) Copyright 2011-2012 Vicente J. Botet Escriba
  6. #ifndef BOOST_THREAD_LOCKS_HPP
  7. #define BOOST_THREAD_LOCKS_HPP
  8. #include <boost/thread/lock_algorithms.hpp>
  9. #include <boost/thread/lock_types.hpp>
  10. #include <boost/thread/lock_guard.hpp>
  11. #include <boost/thread/shared_lock_guard.hpp>
  12. #include <boost/thread/lockable_traits.hpp>
  13. #include <boost/thread/lock_options.hpp>
  14. #endif