1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef BOOST_GEOMETRY_STRATEGIES_AZIMUTH_SERVICES_HPP
- #define BOOST_GEOMETRY_STRATEGIES_AZIMUTH_SERVICES_HPP
- #include <boost/geometry/core/cs.hpp>
- #include <boost/geometry/core/static_assert.hpp>
- namespace boost { namespace geometry
- {
- namespace strategies { namespace azimuth {
- namespace services
- {
- template
- <
- typename Point1, typename Point2,
- typename CSTag1 = typename geometry::cs_tag<Point1>::type,
- typename CSTag2 = typename geometry::cs_tag<Point2>::type
- >
- struct default_strategy
- {
- BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
- "Not implemented for these Points' coordinate systems.",
- Point1, Point2, CSTag1, CSTag2);
- };
- template <typename Strategy>
- struct strategy_converter
- {
- BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
- "Not implemented for this Strategy.",
- Strategy);
- };
- }
- }}
- }}
- #endif
|