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) 2019-2020, Oracle and/or its affiliates.
0004 
0005 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0006 
0007 // Licensed under the Boost Software License version 1.0.
0008 // http://www.boost.org/users/license.html
0009 
0010 #ifndef BOOST_GEOMETRY_STRATEGIES_POINT_ORDER_HPP
0011 #define BOOST_GEOMETRY_STRATEGIES_POINT_ORDER_HPP
0012 
0013 
0014 #include <boost/geometry/core/static_assert.hpp>
0015 
0016 
0017 namespace boost { namespace geometry
0018 {
0019 
0020 namespace strategy { namespace point_order
0021 {
0022 
0023 struct area_tag {};
0024 struct azimuth_tag {};
0025 
0026 namespace services
0027 {
0028 
0029 template <typename CSTag>
0030 struct default_strategy
0031 {
0032     BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0033         "Not implemented for this coordinate system.",
0034         CSTag);
0035 };
0036 
0037 } // namespace services
0038 
0039 }} // namespace strategy::point_order
0040 
0041 }} // namespace boost::geometry
0042 
0043 #endif // BOOST_GEOMETRY_STRATEGIES_POINT_ORDER_HPP