1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_CONVEX_HULL_HPP
- #define BOOST_GEOMETRY_STRATEGIES_CONVEX_HULL_HPP
- #include <boost/geometry/core/cs.hpp>
- #include <boost/geometry/strategies/tags.hpp>
- namespace boost { namespace geometry
- {
- template
- <
- typename Geometry1,
- typename Point,
- typename CsTag = typename cs_tag<Point>::type
- >
- struct strategy_convex_hull
- {
- typedef strategy::not_implemented type;
- };
- }}
- #endif
|