File indexing completed on 2025-01-18 09:36:50
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
0010 #define BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP
0011
0012
0013 #include <boost/geometry/core/static_assert.hpp>
0014
0015
0016 namespace boost { namespace geometry
0017 {
0018
0019 namespace strategy { namespace densify
0020 {
0021
0022 namespace services
0023 {
0024
0025 template <typename CSTag>
0026 struct default_strategy
0027 {
0028 BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0029 "Not implemented for this coordinate system.",
0030 CSTag);
0031 };
0032
0033 }
0034
0035 }}
0036
0037 }}
0038
0039 #endif