// 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_INVENTOR_OSTREAM_H #define CGAL_IO_POLYHEDRON_INVENTOR_OSTREAM_H #include #include #include #include namespace CGAL { template class HDS, class Alloc> Inventor_ostream_base& operator<<(Inventor_ostream_base& out, const Polyhedron_3& P) { IO::internal::Generic_facegraph_printer, File_writer_inventor> printer(out); printer(P); return out; } } // namespace CGAL #endif // CGAL_IO_POLYHEDRON_INVENTOR_OSTREAM_H