12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_INDEX_CARTESIAN_HPP
- #define BOOST_GEOMETRY_STRATEGIES_INDEX_CARTESIAN_HPP
- #include <boost/geometry/strategies/distance/cartesian.hpp>
- #include <boost/geometry/strategies/index/services.hpp>
- namespace boost { namespace geometry { namespace strategies { namespace index
- {
- template <typename CalculationType = void>
- class cartesian
- : public distance::cartesian<CalculationType>
- {};
- namespace services
- {
- template <typename Geometry>
- struct default_strategy<Geometry, cartesian_tag>
- {
- using type = strategies::index::cartesian<>;
- };
- }
- }}}}
- #endif
|