File indexing completed on 2025-01-18 09:36:47
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef BOOST_GEOMETRY_STRATEGIES_INDEX_SERVICES_HPP
0011 #define BOOST_GEOMETRY_STRATEGIES_INDEX_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 namespace strategies { namespace index { namespace services
0022 {
0023
0024 template
0025 <
0026 typename Geometry,
0027 typename CSTag = typename geometry::cs_tag<Geometry>::type
0028 >
0029 struct default_strategy
0030 {
0031 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0032 "Not implemented for this coordinate system.",
0033 Geometry, CSTag);
0034 };
0035
0036 template <typename Strategy>
0037 struct strategy_converter
0038 {
0039 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0040 "Not implemented for this Strategy.",
0041 Strategy);
0042 };
0043
0044
0045 }}}
0046
0047
0048 }}
0049
0050 #endif