Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Boost.Geometry
0002 
0003 // Copyright (c) 2021, 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_IS_CONVEX_SERVICES_HPP
0011 #define BOOST_GEOMETRY_STRATEGIES_IS_CONVEX_SERVICES_HPP
0012 
0013 
0014 #include <boost/geometry/core/cs.hpp>
0015 
0016 #include <boost/mpl/assert.hpp>
0017 
0018 
0019 namespace boost { namespace geometry
0020 {
0021 
0022 
0023 namespace strategies { namespace is_convex {
0024 
0025 namespace services
0026 {
0027 
0028 template
0029 <
0030     typename Geometry,
0031     typename CSTag = typename geometry::cs_tag<Geometry>::type
0032 >
0033 struct default_strategy
0034 {
0035     BOOST_MPL_ASSERT_MSG
0036     (
0037         false, NOT_IMPLEMENTED_FOR_THIS_COORDINATE_SYSTEM
0038         , (types<Geometry, CSTag>)
0039     );
0040 };
0041 
0042 template <typename Strategy>
0043 struct strategy_converter
0044 {
0045     BOOST_GEOMETRY_STATIC_ASSERT_FALSE(
0046         "Not implemented for this Strategy.",
0047         Strategy);
0048 };
0049 
0050 } // namespace services
0051 
0052 }} // namespace strategies::is_convex
0053 
0054 
0055 }} // namespace boost::geometry
0056 
0057 #endif // BOOST_GEOMETRY_STRATEGIES_IS_CONVEX_SERVICES_HPP