iterator.hpp 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2014-2014.
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/container for documentation.
  10. //
  11. //////////////////////////////////////////////////////////////////////////////
  12. #ifndef BOOST_CONTAINER_DETAIL_ITERATOR_HPP
  13. #define BOOST_CONTAINER_DETAIL_ITERATOR_HPP
  14. #ifndef BOOST_CONFIG_HPP
  15. # include <boost/config.hpp>
  16. #endif
  17. #if defined(BOOST_HAS_PRAGMA_ONCE)
  18. # pragma once
  19. #endif
  20. #include <boost/intrusive/detail/iterator.hpp>
  21. namespace boost {
  22. namespace container {
  23. using ::boost::intrusive::iterator_traits;
  24. using ::boost::intrusive::iterator_distance;
  25. using ::boost::intrusive::iterator_advance;
  26. using ::boost::intrusive::iterator;
  27. using ::boost::intrusive::iterator_enable_if_tag;
  28. using ::boost::intrusive::iterator_disable_if_tag;
  29. using ::boost::intrusive::iterator_arrow_result;
  30. } //namespace container {
  31. } //namespace boost {
  32. #endif //#ifndef BOOST_CONTAINER_DETAIL_ITERATORS_HPP