12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_POINT_ORDER_HPP
- #define BOOST_GEOMETRY_STRATEGIES_POINT_ORDER_HPP
- #include <boost/geometry/core/static_assert.hpp>
- namespace boost { namespace geometry
- {
- namespace strategy { namespace point_order
- {
- struct area_tag {};
- struct azimuth_tag {};
- namespace services
- {
- template <typename CSTag>
- struct default_strategy
- {
- BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
- "Not implemented for this coordinate system.",
- CSTag);
- };
- }
- }}
- }}
- #endif
|