Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:35:35

0001 // Boost.Geometry (aka GGL, Generic Geometry Library)
0002 
0003 // Copyright (c) 2014, Oracle and/or its affiliates.
0004 
0005 // Contributed and/or modified by Menelaos Karavelas, 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_ITERATORS_DISPATCH_SEGMENT_ITERATOR_HPP
0011 #define BOOST_GEOMETRY_ITERATORS_DISPATCH_SEGMENT_ITERATOR_HPP
0012 
0013 #include <boost/geometry/core/tag.hpp>
0014 #include <boost/geometry/algorithms/not_implemented.hpp>
0015 
0016 namespace boost { namespace geometry
0017 {
0018 
0019 
0020 #ifndef DOXYGEN_NO_DISPATCH
0021 namespace dispatch
0022 {
0023 
0024 
0025 // dispatch for segments_begin
0026 template <typename Geometry, typename Tag = typename tag<Geometry>::type>
0027 struct segments_begin
0028     : not_implemented<Geometry>
0029 {};
0030 
0031 
0032 
0033 // dispatch for segments_end
0034 template <typename Geometry, typename Tag = typename tag<Geometry>::type>
0035 struct segments_end
0036     : not_implemented<Geometry>
0037 {};
0038 
0039 
0040 
0041 } // namespace dispatch
0042 #endif // DOXYGEN_NO_DISPATCH
0043 
0044 
0045 }} // namespace boost::geometry
0046 
0047 #endif // BOOST_GEOMETRY_ITERATORS_DISPATCH_SEGMENT_ITERATOR_HPP