From 440a1c2cf32dffc8d8d6b8c71e8dcaecce97f6ed Mon Sep 17 00:00:00 2001 From: Barend Gehrels Date: Sat, 14 Jan 2012 17:19:51 +0000 Subject: [PATCH] Fixed missing header file, and added append for multi_point [SVN r76493] --- include/boost/geometry/geometry.hpp | 1 + .../geometry/multi/algorithms/append.hpp | 52 +++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 include/boost/geometry/multi/algorithms/append.hpp diff --git a/include/boost/geometry/geometry.hpp b/include/boost/geometry/geometry.hpp index 95502b7f1..c9588b846 100644 --- a/include/boost/geometry/geometry.hpp +++ b/include/boost/geometry/geometry.hpp @@ -42,6 +42,7 @@ #include #include #include +#include #include #include #include diff --git a/include/boost/geometry/multi/algorithms/append.hpp b/include/boost/geometry/multi/algorithms/append.hpp new file mode 100644 index 000000000..e72be036a --- /dev/null +++ b/include/boost/geometry/multi/algorithms/append.hpp @@ -0,0 +1,52 @@ +// Boost.Geometry (aka GGL, Generic Geometry Library) + +// Copyright (c) 2007-2012 Barend Gehrels, Amsterdam, the Netherlands. +// Copyright (c) 2008-2012 Bruno Lalande, Paris, France. +// Copyright (c) 2009-2012 Mateusz Loskot, London, UK. + +// Parts of Boost.Geometry are redesigned from Geodan's Geographic Library +// (geolib/GGL), copyright (c) 1995-2010 Geodan, Amsterdam, the Netherlands. + +// Use, modification and distribution is subject to the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +#ifndef BOOST_GEOMETRY_MULTI_ALGORITHMS_APPEND_HPP +#define BOOST_GEOMETRY_MULTI_ALGORITHMS_APPEND_HPP + +#include + +#include + + +namespace boost { namespace geometry +{ + +#ifndef DOXYGEN_NO_DISPATCH +namespace dispatch +{ + +namespace splitted_dispatch +{ + +template +struct append_point + : detail::append::append_point +{}; + +template +struct append_range + : detail::append::append_range +{}; + +} + + +} // namespace dispatch +#endif // DOXYGEN_NO_DISPATCH + + +}} // namespace boost::geometry + + +#endif // BOOST_GEOMETRY_MULTI_ALGORITHMS_APPEND_HPP