1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef BOOST_GEOMETRY_ITERATORS_DISPATCH_SEGMENT_ITERATOR_HPP
- #define BOOST_GEOMETRY_ITERATORS_DISPATCH_SEGMENT_ITERATOR_HPP
- #include <boost/geometry/core/tag.hpp>
- #include <boost/geometry/algorithms/not_implemented.hpp>
- namespace boost { namespace geometry
- {
- #ifndef DOXYGEN_NO_DISPATCH
- namespace dispatch
- {
- template <typename Geometry, typename Tag = typename tag<Geometry>::type>
- struct segments_begin
- : not_implemented<Geometry>
- {};
- template <typename Geometry, typename Tag = typename tag<Geometry>::type>
- struct segments_end
- : not_implemented<Geometry>
- {};
- }
- #endif
- }}
- #endif
|