#include #include #include #include #include #include #include #if BOOST_VERSION >= 105600 && (! defined(BOOST_GCC) || BOOST_GCC >= 40500) #include //typedef CGAL::Simple_cartesian Kernel; typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel; int main(int argc, char* argv[]) { typedef CGAL::Point_2 Point; typedef std::vector MultiPoint; typedef std::vector LineString; typedef std::vector MultiLineString; typedef CGAL::Polygon_with_holes_2 Polygon; typedef std::vector MultiPolygon; { std::ifstream is((argc>1)?argv[1]:"data/multiple.wkt"); MultiPoint points; MultiLineString polylines; MultiPolygon polygons; CGAL::read_WKT(is, points,polylines,polygons); for(Point p : points) std::cout<