1234567891011121314151617181920212223242526272829303132333435363738 |
- #ifndef BOOST_GEOMETRY_IO_WKT_STREAM_HPP
- #define BOOST_GEOMETRY_IO_WKT_STREAM_HPP
- #include <boost/geometry/io/wkt/write.hpp>
- template<typename Char, typename Traits, typename Geometry>
- inline std::basic_ostream<Char, Traits>& operator<<
- (
- std::basic_ostream<Char, Traits> &os,
- Geometry const& geom
- )
- {
- os << boost::geometry::wkt(geom);
- return os;
- }
- #endif
|