// Copyright (c) 1997 ETH Zurich (Switzerland). // All rights reserved. // // This file is part of CGAL (www.cgal.org). // // $URL$ // $Id$ // SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial // // Author(s) : Lutz Kettner #ifndef CGAL_IO_POLYHEDRON_VRML_2_OSTREAM_H #define CGAL_IO_POLYHEDRON_VRML_2_OSTREAM_H #include #include #include #include namespace CGAL { template class HDS, class Alloc> VRML_2_ostream& operator<<(VRML_2_ostream& out, const Polyhedron_3& P) { IO::internal::Generic_facegraph_printer, File_writer_VRML_2> printer(out); printer(P); return out; } } // namespace CGAL #endif // CGAL_IO_POLYHEDRON_VRML_2_OSTREAM_H