File indexing completed on 2025-01-18 09:38:27
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef BOOST_INTERPROCESS_DETAIL_TRANSFORM_ITERATORS_HPP
0015 #define BOOST_INTERPROCESS_DETAIL_TRANSFORM_ITERATORS_HPP
0016
0017 #ifndef BOOST_CONFIG_HPP
0018 # include <boost/config.hpp>
0019 #endif
0020 #
0021 #if defined(BOOST_HAS_PRAGMA_ONCE)
0022 # pragma once
0023 #endif
0024
0025 #include <boost/interprocess/detail/config_begin.hpp>
0026 #include <boost/interprocess/detail/workaround.hpp>
0027
0028
0029 #include <boost/interprocess/interprocess_fwd.hpp>
0030
0031 #include <boost/container/detail/transform_iterator.hpp>
0032
0033 namespace boost {
0034 namespace interprocess {
0035
0036 using boost::container::make_transform_iterator;
0037 using boost::container::transform_iterator;
0038
0039 }
0040 }
0041
0042 #include <boost/interprocess/detail/config_end.hpp>
0043
0044 #endif