Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Boost.Geometry (aka GGL, Generic Geometry Library)
0002 
0003 // Copyright (c) 2016-2021 Oracle and/or its affiliates.
0004 // Contributed and/or modified by Vissarion Fisikopoulos, on behalf of Oracle
0005 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0006 
0007 // Use, modification and distribution is subject to the Boost Software License,
0008 // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0009 // http://www.boost.org/LICENSE_1_0.txt)
0010 
0011 #ifndef BOOST_GEOMETRY_STRATEGIES_AZIMUTH_HPP
0012 #define BOOST_GEOMETRY_STRATEGIES_AZIMUTH_HPP
0013 
0014 #include <boost/geometry/core/static_assert.hpp>
0015 
0016 namespace boost { namespace geometry
0017 {
0018 
0019 
0020 namespace strategy { namespace azimuth { namespace services
0021 {
0022 
0023 /*!
0024 \brief Traits class binding a default azimuth strategy to a coordinate system
0025 \ingroup util
0026 \tparam CSTag tag of coordinate system
0027 \tparam CalculationType \tparam_calculation
0028 */
0029 template <typename CSTag>
0030 struct default_strategy
0031 {
0032     BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0033         "Not implemented for this type.",
0034         CSTag);
0035 };
0036 
0037 }}} // namespace strategy::azimuth::services
0038 
0039 
0040 }} // namespace boost::geometry
0041 
0042 #endif // BOOST_GEOMETRY_STRATEGIES_AZIMUTH_HPP