123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_MULTI_MODIFY_WITH_PREDICATE_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_MULTI_MODIFY_WITH_PREDICATE_HPP
- #include <boost/range/begin.hpp>
- #include <boost/range/end.hpp>
- namespace boost { namespace geometry
- {
- #ifndef DOXYGEN_NO_DETAIL
- namespace detail
- {
- template <typename MultiGeometry, typename Predicate, typename Policy>
- struct multi_modify_with_predicate
- {
- static inline void apply(MultiGeometry& multi, Predicate const& predicate)
- {
- for (auto it = boost::begin(multi); it != boost::end(multi); ++it)
- {
- Policy::apply(*it, predicate);
- }
- }
- };
- }
- #endif
- }}
- #endif
|