123456789101112131415161718192021222324252627282930313233343536 |
- #ifndef BOOST_GEOMETRY_GEOMETRIES_ADAPTED_BOOST_RANGE_STRIDED_HPP
- #define BOOST_GEOMETRY_GEOMETRIES_ADAPTED_BOOST_RANGE_STRIDED_HPP
- #include <boost/range/adaptor/strided.hpp>
- #include <boost/geometry/core/tag.hpp>
- #include <boost/geometry/core/tags.hpp>
- namespace boost { namespace geometry
- {
- namespace traits
- {
- template<typename Geometry>
- struct tag<boost::strided_range<Geometry> >
- {
- typedef typename geometry::tag<Geometry>::type type;
- };
- }
- }}
- #endif
|