Manually reversed move of cross_product.hpp from extensions and renamal of stream_wkt to iomanip (because it is in /wkt/ we now call it stream.hpp)

[SVN r76912]
This commit is contained in:
Barend Gehrels 2012-02-06 18:41:46 +00:00
parent 24c00a02c6
commit c018c393f4
3 changed files with 10 additions and 10 deletions

View File

@ -8,8 +8,8 @@
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_GEOMETRY_ARITHMETIC_CROSS_PRODUCT_HPP
#define BOOST_GEOMETRY_ARITHMETIC_CROSS_PRODUCT_HPP
#ifndef BOOST_GEOMETRY_EXTENSIONS_ARITHMETIC_CROSS_PRODUCT_HPP
#define BOOST_GEOMETRY_EXTENSIONS_ARITHMETIC_CROSS_PRODUCT_HPP
#include <cstddef>
@ -107,4 +107,4 @@ inline P1 cross_product(P1 const& p1, P2 const& p2)
}} // namespace boost::geometry
#endif // BOOST_GEOMETRY_ARITHMETIC_CROSS_PRODUCT_HPP
#endif // BOOST_GEOMETRY_EXTENSIONS_ARITHMETIC_CROSS_PRODUCT_HPP

View File

@ -11,16 +11,16 @@
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef BOOST_GEOMETRY_IO_WKT_IOMANIP_HPP
#define BOOST_GEOMETRY_IO_WKT_IOMANIP_HPP
#ifndef BOOST_GEOMETRY_IO_WKT_STREAM_HPP
#define BOOST_GEOMETRY_IO_WKT_STREAM_HPP
#include <boost/geometry/io/wkt/write.hpp>
// This short file contains only one manipulator, streaming as WKT
// Don't include this in any standard-included header file.
// Don't use namespace boost::geometry, to enable the library to stream custom geometries which
// are living outside the namespace boost::geometry
// Don't use namespace boost::geometry, to enable the library to stream custom
// geometries which are living outside the namespace boost::geometry
/*!
\brief Streams a geometry as Well-Known Text
@ -37,4 +37,4 @@ inline std::basic_ostream<Char, Traits>& operator<<
return os;
}
#endif // BOOST_GEOMETRY_IO_WKT_IOMANIP_HPP
#endif // BOOST_GEOMETRY_IO_WKT_STREAM_HPP

View File

@ -18,8 +18,8 @@
#include <boost/geometry/io/wkt/write.hpp>
// BSG 2011-02-03
// We don't include iomanip by default. That tries to stream anything not known
// We don't include stream.hpp by default. That tries to stream anything not known
// by default (such as ttmath) and reports errors.
// Users can include iomanip themselves (if they want to)
// Users can include stream.hpp themselves (if they want to)
#endif // BOOST_GEOMETRY_IO_WKT_WKT_HPP