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 // Copyright (c) 2014-2015 Samuel Debionne, Grenoble, France.
0007 
0008 // This file was modified by Oracle on 2015, 2017, 2018.
0009 // Modifications copyright (c) 2015-2018, Oracle and/or its affiliates.
0010 
0011 // Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
0012 // Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
0013 
0014 // Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
0015 // (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
0016 
0017 // Distributed under the Boost Software License, Version 1.0.
0018 // (See accompanying file LICENSE_1_0.txt or copy at
0019 // http://www.boost.org/LICENSE_1_0.txt)
0020 
0021 #ifndef BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP
0022 #define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP
0023 
0024 #include <boost/geometry/core/cs.hpp>
0025 #include <boost/geometry/core/tag.hpp>
0026 
0027 #include <boost/geometry/strategies/compare.hpp>
0028 #include <boost/geometry/policies/compare.hpp>
0029 
0030 #include <boost/geometry/algorithms/not_implemented.hpp>
0031 
0032 
0033 namespace boost { namespace geometry
0034 {
0035 
0036 #ifndef DOXYGEN_NO_DISPATCH
0037 namespace dispatch
0038 {
0039 
0040 template
0041 <
0042     typename GeometryOut, typename Geometry,
0043     typename TagOut = typename tag<GeometryOut>::type,
0044     typename Tag = typename tag<Geometry>::type
0045 >
0046 struct expand : not_implemented<TagOut, Tag>
0047 {};
0048 
0049 
0050 } // namespace dispatch
0051 #endif // DOXYGEN_NO_DISPATCH
0052 
0053 }} // namespace boost::geometry
0054 
0055 #endif // BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP