named_condition.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2011-2012. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/interprocess for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_INTERPROCESS_WINDOWS_NAMED_CONDITION_HPP
  11. #define BOOST_INTERPROCESS_WINDOWS_NAMED_CONDITION_HPP
  12. #if (defined _MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif
  15. #include <boost/interprocess/detail/config_begin.hpp>
  16. #include <boost/interprocess/detail/workaround.hpp>
  17. #include <boost/interprocess/sync/windows/named_condition_any.hpp>
  18. namespace boost {
  19. namespace interprocess {
  20. namespace ipcdetail {
  21. typedef windows_named_condition_any windows_named_condition;
  22. } //namespace ipcdetail {
  23. } //namespace interprocess {
  24. } //namespace boost {
  25. #include <boost/interprocess/detail/config_end.hpp>
  26. #endif //BOOST_INTERPROCESS_WINDOWS_NAMED_CONDITION_HPP