deque.hpp 1023 B

123456789101112131415161718192021222324252627282930313233
  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_DEQUE_HPP
  11. #define BOOST_INTERPROCESS_CONTAINERS_DEQUE_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/deque.hpp>
  17. #include <boost/interprocess/containers/containers_fwd.hpp>
  18. namespace boost {
  19. namespace interprocess {
  20. using boost::container::deque;
  21. } //namespace interprocess {
  22. } //namespace boost {
  23. #include <boost/interprocess/detail/config_end.hpp>
  24. #endif // #ifndef BOOST_INTERPROCESS_CONTAINERS_DEQUE_HPP