transform_iterator.hpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2005-2015.
  4. // (C) Copyright Gennaro Prota 2003 - 2004.
  5. //
  6. // Distributed under the Boost Software License, Version 1.0.
  7. // (See accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. // See http://www.boost.org/libs/interprocess for documentation.
  11. //
  12. //////////////////////////////////////////////////////////////////////////////
  13. #ifndef BOOST_INTERPROCESS_DETAIL_TRANSFORM_ITERATORS_HPP
  14. #define BOOST_INTERPROCESS_DETAIL_TRANSFORM_ITERATORS_HPP
  15. #ifndef BOOST_CONFIG_HPP
  16. # include <boost/config.hpp>
  17. #endif
  18. #
  19. #if defined(BOOST_HAS_PRAGMA_ONCE)
  20. # pragma once
  21. #endif
  22. #include <boost/interprocess/detail/config_begin.hpp>
  23. #include <boost/interprocess/detail/workaround.hpp>
  24. // interprocess
  25. #include <boost/interprocess/interprocess_fwd.hpp>
  26. // container/detail
  27. #include <boost/container/detail/transform_iterator.hpp>
  28. namespace boost {
  29. namespace interprocess {
  30. using boost::container::make_transform_iterator;
  31. using boost::container::transform_iterator;
  32. } //namespace interprocess {
  33. } //namespace boost {
  34. #include <boost/interprocess/detail/config_end.hpp>
  35. #endif //#ifndef BOOST_INTERPROCESS_DETAIL_TRANSFORM_ITERATORS_HPP