Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:36:50

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2017-2020, Oracle and/or its affiliates.
0004 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0005 
0006 // Licensed under the Boost Software License version 1.0.
0007 // http://www.boost.org/users/license.html
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 } // namespace services
0034 
0035 }} // namespace strategy::densify
0036 
0037 }} // namespace boost::geometry
0038 
0039 #endif // BOOST_GEOMETRY_STRATEGIES_DENSIFY_HPP