File indexing completed on 2025-01-18 09:36:42
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_GEOMETRY_STRATEGIES_AZIMUTH_SERVICES_HPP
0011 #define BOOST_GEOMETRY_STRATEGIES_AZIMUTH_SERVICES_HPP
0012
0013
0014 #include <boost/geometry/core/cs.hpp>
0015 #include <boost/geometry/core/static_assert.hpp>
0016
0017
0018 namespace boost { namespace geometry
0019 {
0020
0021
0022 namespace strategies { namespace azimuth {
0023
0024 namespace services
0025 {
0026
0027 template
0028 <
0029 typename Point1, typename Point2,
0030 typename CSTag1 = typename geometry::cs_tag<Point1>::type,
0031 typename CSTag2 = typename geometry::cs_tag<Point2>::type
0032 >
0033 struct default_strategy
0034 {
0035 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0036 "Not implemented for these Points' coordinate systems.",
0037 Point1, Point2, CSTag1, CSTag2);
0038 };
0039
0040 template <typename Strategy>
0041 struct strategy_converter
0042 {
0043 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0044 "Not implemented for this Strategy.",
0045 Strategy);
0046 };
0047
0048
0049 }
0050
0051 }}
0052
0053
0054 }}
0055
0056 #endif