File indexing completed on 2025-01-18 09:35:27
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_GEOMETRY_GEOMETRIES_ADAPTED_BOOST_RANGE_STRIDED_HPP
0010 #define BOOST_GEOMETRY_GEOMETRIES_ADAPTED_BOOST_RANGE_STRIDED_HPP
0011
0012
0013 #include <boost/range/adaptor/strided.hpp>
0014
0015 #include <boost/geometry/core/tag.hpp>
0016 #include <boost/geometry/core/tags.hpp>
0017
0018
0019 namespace boost { namespace geometry
0020 {
0021
0022 namespace traits
0023 {
0024
0025 template<typename Geometry>
0026 struct tag<boost::strided_range<Geometry> >
0027 {
0028 typedef typename geometry::tag<Geometry>::type type;
0029 };
0030
0031 }
0032
0033 }}
0034
0035 #endif
0036