// Copyright (c) 1997-2010 INRIA Sophia-Antipolis (France). // Copyright (c) 2011, 2020 GeometryFactory Sarl (France) // 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) : Laurent Rineau, Maxime Gimeno // Adapted from operator>>(std::istream&, Triangulation_3&) from // #ifndef CGAL_TRIANGULATION_FILE_INPUT_3_H #define CGAL_TRIANGULATION_FILE_INPUT_3_H #include #include namespace CGAL { template std::istream& file_input(std::istream& is, Tr_tgt &tr, ConvertVertex convert_vertex = ConvertVertex(), ConvertCell convert_cell = ConvertCell()) { return internal::file_input(is, tr, false, convert_vertex, convert_cell); } } // end namespace CGAL #endif // TRIANGULATION_FILE_INPUT_H