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 // Copyright (c) 2014-2015 Samuel Debionne, Grenoble, France.
7 
8 // This file was modified by Oracle on 2015.
9 // Modifications copyright (c) 2015, Oracle and/or its affiliates.
10 
11 // Contributed and/or modified by Menelaos Karavelas, 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_EXPAND_HPP
21 #define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP
22 
23 #include <boost/geometry/core/cs.hpp>
24 #include <boost/geometry/core/tag.hpp>
25 
26 #include <boost/geometry/strategies/compare.hpp>
27 #include <boost/geometry/policies/compare.hpp>
28 
29 #include <boost/geometry/algorithms/not_implemented.hpp>
30 
31 
32 namespace boost { namespace geometry
33 {
34 
35 #ifndef DOXYGEN_NO_DISPATCH
36 namespace dispatch
37 {
38 
39 template
40 <
41     typename GeometryOut, typename Geometry,
42     typename StrategyLess = strategy::compare::default_strategy,
43     typename StrategyGreater = strategy::compare::default_strategy,
44     typename TagOut = typename tag<GeometryOut>::type,
45     typename Tag = typename tag<Geometry>::type,
46     typename CSTagOut = typename cs_tag<GeometryOut>::type,
47     typename CSTag = typename cs_tag<Geometry>::type
48 >
49 struct expand : not_implemented<TagOut, Tag>
50 {};
51 
52 
53 } // namespace dispatch
54 #endif // DOXYGEN_NO_DISPATCH
55 
56 }} // namespace boost::geometry
57 
58 #endif // BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP
59