1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef BOOST_GEOMETRY_ALGORITHMS_DISPATCH_IS_VALID_HPP
- #define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_IS_VALID_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,
-
- bool AllowEmptyMultiGeometries = true
- >
- struct is_valid
- : not_implemented<Geometry>
- {};
- }
- #endif
- }}
- #endif
|