// file: examples/Nef_3/nefIO.C #include #include #include #include #include #include typedef CGAL::Gmpz NT; typedef CGAL::Homogeneous SK; typedef CGAL::Extended_homogeneous EK; typedef CGAL::Nef_polyhedron_3 Nef_polyhedron_S; typedef CGAL::Nef_polyhedron_3 Nef_polyhedron_E; int main() { Nef_polyhedron_E E; Nef_polyhedron_S S; std::cin >> E; if(E.is_bounded()) { std::ofstream out("temp.nef3"); out << E; std::ifstream in("temp.nef3"); in >> S; } }