// Boost.Geometry // Copyright (c) 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_ALGORITHMS_DETAIL_DUMMY_GEOMETRIES_HPP #define BOOST_GEOMETRY_ALGORITHMS_DETAIL_DUMMY_GEOMETRIES_HPP #include #include namespace boost { namespace geometry { #ifndef DOXYGEN_NO_DETAIL namespace detail { struct dummy_point {}; struct dummy_segment {}; struct dummy_box {}; struct dummy_linestring {}; struct dummy_ring {}; struct dummy_polygon {}; struct dummy_multi_point {}; struct dummy_multi_linestring {}; struct dummy_multi_polygon {}; } // namespace detail #endif // DOXYGEN_NO_DETAIL namespace traits { template <> struct tag { typedef point_tag type; }; template <> struct tag { typedef segment_tag type; }; template <> struct tag { typedef box_tag type; }; template <> struct tag { typedef linestring_tag type; }; template <> struct tag { typedef ring_tag type; }; template <> struct tag { typedef polygon_tag type; }; template <> struct tag { typedef multi_point_tag type; }; template <> struct tag { typedef multi_linestring_tag type; }; template <> struct tag { typedef multi_polygon_tag type; }; } // namespace traits }} // namespace boost::geometry #endif // BOOST_GEOMETRY_ALGORITHMS_DETAIL_DUMMY_GEOMETRIES_HPP