containers_fwd.hpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2009-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_CONTAINERS_FWD_HPP
  11. #define BOOST_INTERPROCESS_CONTAINERS_CONTAINERS_FWD_HPP
  12. /// @cond
  13. #if (defined _MSC_VER) && (_MSC_VER >= 1200)
  14. # pragma once
  15. #endif
  16. //////////////////////////////////////////////////////////////////////////////
  17. // Standard predeclarations
  18. //////////////////////////////////////////////////////////////////////////////
  19. #include <boost/interprocess/detail/config_begin.hpp>
  20. #include <boost/container/container_fwd.hpp>
  21. namespace boost {
  22. namespace interprocess {
  23. using boost::container::ordered_range;
  24. using boost::container::ordered_unique_range;
  25. } //namespace interprocess {
  26. } //namespace boost {
  27. #include <boost/interprocess/detail/config_end.hpp>
  28. /// @endcond
  29. #endif // #ifndef BOOST_INTERPROCESS_CONTAINERS_CONTAINERS_FWD_HPP