123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_LINEAR_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_ENVELOPE_LINEAR_HPP
- #include <boost/geometry/core/tags.hpp>
- #include <boost/geometry/algorithms/detail/envelope/range.hpp>
- #include <boost/geometry/algorithms/dispatch/envelope.hpp>
- namespace boost { namespace geometry
- {
- #ifndef DOXYGEN_NO_DISPATCH
- namespace dispatch
- {
- template <typename Linestring>
- struct envelope<Linestring, linestring_tag>
- : detail::envelope::envelope_range
- {};
- template <typename MultiLinestring>
- struct envelope<MultiLinestring, multi_linestring_tag>
- : detail::envelope::envelope_multi_range
- <
- detail::envelope::envelope_range
- >
- {};
- }
- #endif
- }}
- #endif
|