// Boost.Geometry (aka GGL, Generic Geometry Library) // Copyright (c) 2014, Oracle and/or its affiliates. // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle // Licensed under the Boost Software License version 1.0. // http://www.boost.org/users/license.html #ifndef BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_INTERFACE_HPP #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_INTERFACE_HPP #include #include #include #include #include namespace boost { namespace geometry { namespace resolve_variant { template struct is_valid { static inline bool apply(Geometry const& geometry) { concept::check(); return dispatch::is_valid::apply(geometry); } }; template struct is_valid > { struct visitor : boost::static_visitor { template bool operator()(Geometry const& geometry) const { return is_valid::apply(geometry); } }; static inline bool apply(boost::variant const& geometry) { return boost::apply_visitor(visitor(), geometry); } }; } // namespace resolve_variant /*! \brief \brief_check{is valid (in the OGC sense)} \ingroup is_valid \tparam Geometry \tparam_geometry \param geometry \param_geometry \return \return_check{is valid (in the OGC sense)} \qbk{[include reference/algorithms/is_valid.qbk]} */ template inline bool is_valid(Geometry const& geometry) { return resolve_variant::is_valid::apply(geometry); } }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_IS_VALID_INTERFACE_HPP