CGAL 5.4 - IO Streams
Stream_support/Point_WKT.cpp
#include <CGAL/Simple_cartesian.h>
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <boost/config.hpp>
#include <boost/version.hpp>
#include <iostream>
#include <fstream>
#include <vector>
#include <CGAL/IO/WKT.h>
//typedef CGAL::Simple_cartesian<CGAL::Gmpq> Kernel;
int main(int argc, char* argv[])
{
typedef CGAL::Point_2<Kernel> Point;
typedef std::vector<Point> MultiPoint;
std::ifstream is((argc>1)?argv[1]:"data/multipoint.wkt");
MultiPoint mp;
for(const Point& p : mp)
{
std::cout<<p<<std::endl;
}
is.close();
return 0;
}