pair.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2008-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_CONTAINERS_PAIR_HPP
  11. #define BOOST_INTERPROCESS_CONTAINERS_PAIR_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/container/detail/pair.hpp>
  17. #include <boost/interprocess/containers/containers_fwd.hpp>
  18. namespace boost {
  19. namespace interprocess {
  20. using boost::container::container_detail::pair;
  21. using boost::container::container_detail::piecewise_construct;
  22. } //namespace interprocess {
  23. } //namespace boost {
  24. #include <boost/interprocess/detail/config_end.hpp>
  25. #endif // #ifndef BOOST_INTERPROCESS_CONTAINERS_PAIR_HPP