1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef BOOST_INTERPROCESS_DETAIL_TRANSFORM_ITERATORS_HPP
- #define BOOST_INTERPROCESS_DETAIL_TRANSFORM_ITERATORS_HPP
- #ifndef BOOST_CONFIG_HPP
- # include <boost/config.hpp>
- #endif
- #
- #if defined(BOOST_HAS_PRAGMA_ONCE)
- # pragma once
- #endif
- #include <boost/interprocess/detail/config_begin.hpp>
- #include <boost/interprocess/detail/workaround.hpp>
- #include <boost/interprocess/interprocess_fwd.hpp>
- #include <boost/container/detail/transform_iterator.hpp>
- namespace boost {
- namespace interprocess {
- using boost::container::make_transform_iterator;
- using boost::container::transform_iterator;
- }
- }
- #include <boost/interprocess/detail/config_end.hpp>
- #endif
|