Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // Boost.Geometry (aka GGL, Generic Geometry Library)
0002 
0003 // Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands.
0004 // Copyright (c) 2008-2015 Bruno Lalande, Paris, France.
0005 // Copyright (c) 2009-2015 Mateusz Loskot, London, UK.
0006 
0007 // This file was modified by Oracle on 2015, 2018.
0008 // Modifications copyright (c) 2015-2018, Oracle and/or its affiliates.
0009 
0010 // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
0011 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0012 
0013 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
0014 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
0015 
0016 // Distributed under the Boost Software License, Version 1.0.
0017 // (See accompanying file LICENSE_1_0.txt or copy at
0018 // http://www.boost.org/LICENSE_1_0.txt)
0019 
0020 #ifndef BOOST_GEOMETRY_ALGORITHMS_DISPATCH_ENVELOPE_HPP
0021 #define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_ENVELOPE_HPP
0022 
0023 #include <boost/geometry/core/cs.hpp>
0024 #include <boost/geometry/core/tag.hpp>
0025 
0026 #include <boost/geometry/algorithms/not_implemented.hpp>
0027 
0028 
0029 namespace boost { namespace geometry
0030 {
0031 
0032 #ifndef DOXYGEN_NO_DISPATCH
0033 namespace dispatch
0034 {
0035 
0036 template
0037 <
0038     typename Geometry,
0039     typename Tag = typename tag<Geometry>::type
0040 >
0041 struct envelope : not_implemented<Tag>
0042 {};
0043 
0044 } // namespace dispatch
0045 #endif // DOXYGEN_NO_DISPATCH
0046 
0047 }} // namespace boost::geometry
0048 
0049 #endif // BOOST_GEOMETRY_ALGORITHMS_DISPATCH_ENVELOPE_HPP