containers_fwd.hpp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED)
  13. #ifndef BOOST_CONFIG_HPP
  14. # include <boost/config.hpp>
  15. #endif
  16. #
  17. #if defined(BOOST_HAS_PRAGMA_ONCE)
  18. # pragma once
  19. #endif
  20. //////////////////////////////////////////////////////////////////////////////
  21. // Standard predeclarations
  22. //////////////////////////////////////////////////////////////////////////////
  23. #include <boost/interprocess/detail/config_begin.hpp>
  24. #include <boost/container/container_fwd.hpp>
  25. namespace boost {
  26. namespace interprocess {
  27. using boost::container::ordered_range;
  28. using boost::container::ordered_unique_range;
  29. } //namespace interprocess {
  30. } //namespace boost {
  31. #include <boost/interprocess/detail/config_end.hpp>
  32. #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED
  33. #endif // #ifndef BOOST_INTERPROCESS_CONTAINERS_CONTAINERS_FWD_HPP