annotate DEPENDENCIES/generic/include/boost/geometry/algorithms/dispatch/is_simple.hpp @ 133:4acb5d8d80b6 tip

Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author Chris Cannam
date Tue, 30 Jul 2019 12:25:44 +0100
parents f46d142149f5
children
rev   line source
Chris@102 1 // Boost.Geometry (aka GGL, Generic Geometry Library)
Chris@102 2
Chris@102 3 // Copyright (c) 2014, Oracle and/or its affiliates.
Chris@102 4
Chris@102 5 // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
Chris@102 6
Chris@102 7 // Licensed under the Boost Software License version 1.0.
Chris@102 8 // http://www.boost.org/users/license.html
Chris@102 9
Chris@102 10 #ifndef BOOST_GEOMETRY_ALGORITHMS_DISPATCH_IS_SIMPLE_HPP
Chris@102 11 #define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_IS_SIMPLE_HPP
Chris@102 12
Chris@102 13 #include <boost/geometry/core/tag.hpp>
Chris@102 14
Chris@102 15 #include <boost/geometry/algorithms/not_implemented.hpp>
Chris@102 16
Chris@102 17
Chris@102 18 namespace boost { namespace geometry
Chris@102 19 {
Chris@102 20
Chris@102 21 #ifndef DOXYGEN_NO_DISPATCH
Chris@102 22 namespace dispatch
Chris@102 23 {
Chris@102 24
Chris@102 25
Chris@102 26 template <typename Geometry, typename Tag = typename tag<Geometry>::type>
Chris@102 27 struct is_simple
Chris@102 28 : not_implemented<Geometry>
Chris@102 29 {};
Chris@102 30
Chris@102 31
Chris@102 32 } // namespace dispatch
Chris@102 33 #endif // DOXYGEN_NO_DISPATCH
Chris@102 34
Chris@102 35
Chris@102 36 }} // namespace boost::geometry
Chris@102 37
Chris@102 38 #endif // BOOST_GEOMETRY_ALGORITHMS_DISPATCH_IS_SIMPLE_HPP