geometry/test/algorithms/from_wkt.hpp
2014-04-10 15:24:46 +03:00

15 lines
320 B
C++

#ifndef BOOST_GEOMETRY_TEST_FROM_WKT_HPP
#define BOOST_GEOMETRY_TEST_FROM_WKT_HPP
#include <boost/geometry/io/wkt/read.hpp>
template <typename Geometry>
Geometry from_wkt(std::string const& wkt)
{
Geometry res;
boost::geometry::read_wkt(wkt, res);
return res;
}
#endif // BOOST_GEOMETRY_TEST_FROM_WKT_HPP