// Boost.Geometry // Copyright (c) 2020-2021, Oracle and/or its affiliates. // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle // Licensed under the Boost Software License version 1.0. // http://www.boost.org/users/license.html #ifndef BOOST_GEOMETRY_STRATEGIES_INDEX_SPHERICAL_HPP #define BOOST_GEOMETRY_STRATEGIES_INDEX_SPHERICAL_HPP #include #include namespace boost { namespace geometry { namespace strategies { namespace index { #ifndef DOXYGEN_NO_DETAIL namespace detail { template class spherical : public strategies::distance::detail::spherical { using base_t = strategies::distance::detail::spherical; public: spherical() = default; template explicit spherical(RadiusOrSphere const& radius_or_sphere) : base_t(radius_or_sphere) {} }; } // namespace detail #endif // DOXYGEN_NO_DETAIL template class spherical : public strategies::index::detail::spherical {}; namespace services { template struct default_strategy { using type = strategies::index::spherical<>; }; template struct default_strategy { using type = strategies::index::spherical<>; }; template struct default_strategy { using type = strategies::index::spherical<>; }; } // namespace services }}}} // namespace boost::geometry::strategy::index #endif // BOOST_GEOMETRY_STRATEGIES_INDEX_SPHERICAL_HPP