12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DISPATCH_ENVELOPE_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_ENVELOPE_HPP
- #include <boost/geometry/core/cs.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 envelope : not_implemented<Tag>
- {};
- }
- #endif
- }}
- #endif
|