1 // Boost.Geometry (aka GGL, Generic Geometry Library) 2 3 // Copyright (c) 2007-2015 Barend Gehrels, Amsterdam, the Netherlands. 4 // Copyright (c) 2008-2015 Bruno Lalande, Paris, France. 5 // Copyright (c) 2009-2015 Mateusz Loskot, London, UK. 6 7 // This file was modified by Oracle on 2015, 2018. 8 // Modifications copyright (c) 2015-2018, Oracle and/or its affiliates. 9 10 // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle 11 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle 12 13 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library 14 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. 15 16 // Distributed under the Boost Software License, Version 1.0. 17 // (See accompanying file LICENSE_1_0.txt or copy at 18 // http://www.boost.org/LICENSE_1_0.txt) 19 20 #ifndef BOOST_GEOMETRY_ALGORITHMS_DISPATCH_ENVELOPE_HPP 21 #define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_ENVELOPE_HPP 22 23 #include <boost/geometry/core/cs.hpp> 24 #include <boost/geometry/core/tag.hpp> 25 26 #include <boost/geometry/algorithms/not_implemented.hpp> 27 28 29 namespace boost { namespace geometry 30 { 31 32 #ifndef DOXYGEN_NO_DISPATCH 33 namespace dispatch 34 { 35 36 template 37 < 38 typename Geometry, 39 typename Tag = typename tag<Geometry>::type 40 > 41 struct envelope : not_implemented<Tag> 42 {}; 43 44 } // namespace dispatch 45 #endif // DOXYGEN_NO_DISPATCH 46 47 }} // namespace boost::geometry 48 49 #endif // BOOST_GEOMETRY_ALGORITHMS_DISPATCH_ENVELOPE_HPP 50