]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/geometry/algorithms/dispatch/expand.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / geometry / algorithms / dispatch / expand.hpp
CommitLineData
7c673cae
FG
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
92f5a8d4
TL
8// This file was modified by Oracle on 2015, 2017, 2018.
9// Modifications copyright (c) 2015-2018, Oracle and/or its affiliates.
7c673cae
FG
10
11// Contributed and/or modified by Menelaos Karavelas, on behalf of Oracle
b32b8144 12// Contributed and/or modified by Adam Wulkiewicz, on behalf of Oracle
7c673cae
FG
13
14// Parts of Boost.Geometry are redesigned from Geodan's Geographic Library
15// (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands.
16
17// Distributed under the Boost Software License, Version 1.0.
18// (See accompanying file LICENSE_1_0.txt or copy at
19// http://www.boost.org/LICENSE_1_0.txt)
20
21#ifndef BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP
22#define BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP
23
24#include <boost/geometry/core/cs.hpp>
25#include <boost/geometry/core/tag.hpp>
26
27#include <boost/geometry/strategies/compare.hpp>
28#include <boost/geometry/policies/compare.hpp>
29
30#include <boost/geometry/algorithms/not_implemented.hpp>
31
32
33namespace boost { namespace geometry
34{
35
36#ifndef DOXYGEN_NO_DISPATCH
37namespace dispatch
38{
39
40template
41<
42 typename GeometryOut, typename Geometry,
7c673cae 43 typename TagOut = typename tag<GeometryOut>::type,
92f5a8d4 44 typename Tag = typename tag<Geometry>::type
7c673cae
FG
45>
46struct expand : not_implemented<TagOut, Tag>
47{};
48
49
50} // namespace dispatch
51#endif // DOXYGEN_NO_DISPATCH
52
53}} // namespace boost::geometry
54
55#endif // BOOST_GEOMETRY_ALGORITHMS_DISPATCH_EXPAND_HPP