From fa3da62348bca8805daa86a3a3f72867f50d124c Mon Sep 17 00:00:00 2001 From: Michael Hemmer Date: Thu, 15 Mar 2007 09:10:53 +0000 Subject: [PATCH] update license header --- Number_types/include/CGAL/CORE_BigFloat.h | 16 ++++++++++---- Number_types/include/CGAL/CORE_BigInt.h | 19 +++++++++++----- Number_types/include/CGAL/CORE_BigRat.h | 19 +++++++++++----- Number_types/include/CGAL/CORE_Expr.h | 2 +- .../include/CGAL/CORE_coercion_traits.h | 16 ++++++++++---- Number_types/include/CGAL/Counted_number.h | 4 ++-- .../include/CGAL/Gmp_coercion_traits.h | 20 ++++++++++++----- Number_types/include/CGAL/Gmpq.h | 16 +++++--------- Number_types/include/CGAL/Gmpz.h | 18 +++++++-------- Number_types/include/CGAL/Gmpzf.h | 10 ++++----- Number_types/include/CGAL/Interval_nt.h | 4 ++-- Number_types/include/CGAL/Lazy_exact_nt.h | 2 +- Number_types/include/CGAL/MP_Float.h | 2 +- .../include/CGAL/Number_type_checker.h | 2 +- Number_types/include/CGAL/Quotient.h | 4 ++-- Number_types/include/CGAL/Root_of_traits.h | 2 +- Number_types/include/CGAL/Sqrt_extension.h | 22 ++++++++++++------- Number_types/include/CGAL/double.h | 2 +- Number_types/include/CGAL/float.h | 2 +- .../include/CGAL/gmpxx_coercion_traits.h | 21 +++++++++++++----- Number_types/include/CGAL/int.h | 2 +- Number_types/include/CGAL/leda_bigfloat.h | 2 +- .../include/CGAL/leda_coercion_traits.h | 20 ++++++++++++----- Number_types/include/CGAL/leda_integer.h | 2 +- Number_types/include/CGAL/leda_rational.h | 2 +- Number_types/include/CGAL/leda_real.h | 2 +- Number_types/include/CGAL/long_double.h | 2 +- Number_types/include/CGAL/long_long.h | 2 +- Number_types/include/CGAL/mpq_class.h | 2 +- Number_types/include/CGAL/mpz_class.h | 4 ++-- Number_types/include/CGAL/number_type_basic.h | 4 ++-- Number_types/include/CGAL/utils.h | 4 ++-- Number_types/include/CGAL/utils_classes.h | 4 ++-- 33 files changed, 157 insertions(+), 98 deletions(-) diff --git a/Number_types/include/CGAL/CORE_BigFloat.h b/Number_types/include/CGAL/CORE_BigFloat.h index 12343a9dede..fe5e6219254 100644 --- a/Number_types/include/CGAL/CORE_BigFloat.h +++ b/Number_types/include/CGAL/CORE_BigFloat.h @@ -1,14 +1,22 @@ -// TODO: Add licence +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org); you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; version 2.1 of the License. +// See the file LICENSE.LGPL distributed with CGAL. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ -// // -// Author(s) : Michael Hemmer -// Michael Hemmer +// +// Author(s) : Michael Hemmer #ifndef CGAL_CORE_BIGFLOAT_H #define CGAL_CORE_BIGFLOAT_H diff --git a/Number_types/include/CGAL/CORE_BigInt.h b/Number_types/include/CGAL/CORE_BigInt.h index 904527a3fb9..604ea59128e 100644 --- a/Number_types/include/CGAL/CORE_BigInt.h +++ b/Number_types/include/CGAL/CORE_BigInt.h @@ -1,15 +1,24 @@ -// TODO: Add licence +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org); you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; version 2.1 of the License. +// See the file LICENSE.LGPL distributed with CGAL. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ -// // -// Author(s) : Michael Hemmer -// Arno Eigenwillig -// Michael Hemmer +// +// Author(s) : Michael Hemmer + + #ifndef CGAL_CORE_BIGINT_H #define CGAL_CORE_BIGINT_H diff --git a/Number_types/include/CGAL/CORE_BigRat.h b/Number_types/include/CGAL/CORE_BigRat.h index b05e0079fbe..9977b105173 100644 --- a/Number_types/include/CGAL/CORE_BigRat.h +++ b/Number_types/include/CGAL/CORE_BigRat.h @@ -1,15 +1,24 @@ -// TODO: Add licence +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org); you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; version 2.1 of the License. +// See the file LICENSE.LGPL distributed with CGAL. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ -// // -// Author(s) : Michael Hemmer -// Arno Eigenwillig -// Michael Hemmer +// +// Author(s) : Michael Hemmer + + #ifndef CGAL_CORE_BIGRAT_H #define CGAL_CORE_BIGRAT_H diff --git a/Number_types/include/CGAL/CORE_Expr.h b/Number_types/include/CGAL/CORE_Expr.h index fc7091a1dec..0c6fb3fec06 100644 --- a/Number_types/include/CGAL/CORE_Expr.h +++ b/Number_types/include/CGAL/CORE_Expr.h @@ -1,4 +1,4 @@ -// Copyright (c) 2002-2004 Utrecht University (The Netherlands), +// Copyright (c) 2002-2004,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/CORE_coercion_traits.h b/Number_types/include/CGAL/CORE_coercion_traits.h index 8bac8fb7d20..eb71c2e715c 100644 --- a/Number_types/include/CGAL/CORE_coercion_traits.h +++ b/Number_types/include/CGAL/CORE_coercion_traits.h @@ -1,15 +1,23 @@ -// TODO: Add licence +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org); you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; version 2.1 of the License. +// See the file LICENSE.LGPL distributed with CGAL. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // // $URL$ // $Id$ -// // -// Author(s) : Michael Hemmer // -// ============================================================================ +// Author(s) : Michael Hemmer + /*! \file NiX/CORE/Coercion_traits.h * \brief Provides specializations of Coercion_traits for the CORE types. diff --git a/Number_types/include/CGAL/Counted_number.h b/Number_types/include/CGAL/Counted_number.h index ad19135ca83..6031d0d2d0c 100644 --- a/Number_types/include/CGAL/Counted_number.h +++ b/Number_types/include/CGAL/Counted_number.h @@ -1,4 +1,4 @@ -// Copyright (c) 2001 Utrecht University (The Netherlands), +// Copyright (c) 2001,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), @@ -20,7 +20,7 @@ // // // Author(s) : Geert-Jan Giezeman, -// Michael Hemmer +// Michael Hemmer #ifndef CGAL_COUNTED_NUMBER_H #define CGAL_COUNTED_NUMBER_H diff --git a/Number_types/include/CGAL/Gmp_coercion_traits.h b/Number_types/include/CGAL/Gmp_coercion_traits.h index 99ed3f5bc2e..4dafa16384e 100644 --- a/Number_types/include/CGAL/Gmp_coercion_traits.h +++ b/Number_types/include/CGAL/Gmp_coercion_traits.h @@ -1,15 +1,23 @@ -// TODO: Add licence +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org); you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; version 2.1 of the License. +// See the file LICENSE.LGPL distributed with CGAL. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// +// $URL:$ +// $Id:$ // -// Author(s) : Michael Hemmer // -// ============================================================================ +// Author(s) : Michael Hemmer + /*! \file NiX/Gmp/Coercion_traits.h * \brief Provides specializations of Coercion_traits for the Gmp types. diff --git a/Number_types/include/CGAL/Gmpq.h b/Number_types/include/CGAL/Gmpq.h index bfef3818311..976f02267ec 100644 --- a/Number_types/include/CGAL/Gmpq.h +++ b/Number_types/include/CGAL/Gmpq.h @@ -1,8 +1,5 @@ -// Copyright (c) 2002,2003 Utrecht University (The Netherlands), -// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), -// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg -// (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), -// and Tel-Aviv University (Israel). All rights reserved. +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as @@ -15,12 +12,11 @@ // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// +// $URL:$ +// $Id:$ // -// Author(s) : Andreas Fabri, Sylvain Pion - +// +// Author(s) : Michael Hemmer #ifndef CGAL_GMPQ_H #define CGAL_GMPQ_H diff --git a/Number_types/include/CGAL/Gmpz.h b/Number_types/include/CGAL/Gmpz.h index b24d23aae81..a8b00bb0b07 100644 --- a/Number_types/include/CGAL/Gmpz.h +++ b/Number_types/include/CGAL/Gmpz.h @@ -1,8 +1,6 @@ -// Copyright (c) 1999,2003,2004 Utrecht University (The Netherlands), -// ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), -// INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg -// (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), -// and Tel-Aviv University (Israel). All rights reserved. +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany), +// INRIA Sophia-Antipolis (France). +// All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License as @@ -15,12 +13,12 @@ // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// +// $URL:$ +// $Id:$ // -// Author(s) : Andreas Fabri, Stefan Schirra, Sylvain Pion - +// +// Author(s) : Michael Hemmer +// Sylvain Pion #ifndef CGAL_GMPZ_H #define CGAL_GMPZ_H diff --git a/Number_types/include/CGAL/Gmpzf.h b/Number_types/include/CGAL/Gmpzf.h index c3bdd53c4aa..ea89bc5ee85 100644 --- a/Number_types/include/CGAL/Gmpzf.h +++ b/Number_types/include/CGAL/Gmpzf.h @@ -1,4 +1,4 @@ -// Copyright (c) 1997-2001 ETH Zurich (Switzerland). +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or @@ -12,11 +12,11 @@ // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// +// $URL:$ +// $Id:$ // -// Author(s) : Bernd Gaertner +// +// Author(s) : Michael Hemmer #ifndef CGAL_GMPZF_H #define CGAL_GMPZF_H diff --git a/Number_types/include/CGAL/Interval_nt.h b/Number_types/include/CGAL/Interval_nt.h index 07fea50c4c2..3e9939bd9bf 100644 --- a/Number_types/include/CGAL/Interval_nt.h +++ b/Number_types/include/CGAL/Interval_nt.h @@ -1,4 +1,4 @@ -// Copyright (c) 1998-2005 Utrecht University (The Netherlands), +// Copyright (c) 1998-2005,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), @@ -19,7 +19,7 @@ // $Id$ // // -// Author(s) : Sylvain Pion +// Author(s) : Sylvain Pion, Michael Hemmer #ifndef CGAL_INTERVAL_NT_H #define CGAL_INTERVAL_NT_H diff --git a/Number_types/include/CGAL/Lazy_exact_nt.h b/Number_types/include/CGAL/Lazy_exact_nt.h index 455ec1195f4..580dc846023 100644 --- a/Number_types/include/CGAL/Lazy_exact_nt.h +++ b/Number_types/include/CGAL/Lazy_exact_nt.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999-2006 INRIA Sophia-Antipolis (France). +// Copyright (c) 1999-2007 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or diff --git a/Number_types/include/CGAL/MP_Float.h b/Number_types/include/CGAL/MP_Float.h index a80d90f2394..61381a13155 100644 --- a/Number_types/include/CGAL/MP_Float.h +++ b/Number_types/include/CGAL/MP_Float.h @@ -1,4 +1,4 @@ -// Copyright (c) 2001-2006 INRIA Sophia-Antipolis (France). +// Copyright (c) 2001-2007 INRIA Sophia-Antipolis (France). // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or diff --git a/Number_types/include/CGAL/Number_type_checker.h b/Number_types/include/CGAL/Number_type_checker.h index b80f8520a2c..70fb7c2ad39 100644 --- a/Number_types/include/CGAL/Number_type_checker.h +++ b/Number_types/include/CGAL/Number_type_checker.h @@ -1,4 +1,4 @@ -// Copyright (c) 2005 Utrecht University (The Netherlands), +// Copyright (c) 2005-2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/Quotient.h b/Number_types/include/CGAL/Quotient.h index 82b3f2b37bc..e1f9c385b03 100644 --- a/Number_types/include/CGAL/Quotient.h +++ b/Number_types/include/CGAL/Quotient.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999-2005 Utrecht University (The Netherlands), +// Copyright (c) 1999-2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), @@ -19,7 +19,7 @@ // $Id$ // // -// Author(s) : Stefan Schirra, Sylvain Pion +// Author(s) : Stefan Schirra, Sylvain Pion, Michael Hemmer // The template class Quotient is based on the LEDA class // leda_rational written by Stefan Naeher and Christian Uhrig. diff --git a/Number_types/include/CGAL/Root_of_traits.h b/Number_types/include/CGAL/Root_of_traits.h index b0521a61c44..92610a21f49 100644 --- a/Number_types/include/CGAL/Root_of_traits.h +++ b/Number_types/include/CGAL/Root_of_traits.h @@ -16,7 +16,7 @@ // $Id$ // // -// Author(s) : Sylvain Pion, Monique Teillaud, Athanasios Kakargias +// Author(s) : Sylvain Pion, Monique Teillaud, Athanasios Kakargias, Michael Hemmer #ifndef CGAL_ROOT_OF_TRAITS_H #define CGAL_ROOT_OF_TRAITS_H diff --git a/Number_types/include/CGAL/Sqrt_extension.h b/Number_types/include/CGAL/Sqrt_extension.h index 7f078a83569..17556f2f3fa 100644 --- a/Number_types/include/CGAL/Sqrt_extension.h +++ b/Number_types/include/CGAL/Sqrt_extension.h @@ -1,17 +1,23 @@ -// TODO: Add licence +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org); you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; version 2.1 of the License. +// See the file LICENSE.LGPL distributed with CGAL. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// +// $URL:$ +// $Id:$ // -// Author(s) : Elmar Schoemer -// Michael Hemmer -// Arno Eigenwillig // -// ============================================================================ +// Author(s) : Michael Hemmer + // TODO: The comments are all original EXACUS comments and aren't adapted. So // they may be wrong now. diff --git a/Number_types/include/CGAL/double.h b/Number_types/include/CGAL/double.h index fbc58ad3708..3e8c511249f 100644 --- a/Number_types/include/CGAL/double.h +++ b/Number_types/include/CGAL/double.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999 Utrecht University (The Netherlands), +// Copyright (c) 1999,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/float.h b/Number_types/include/CGAL/float.h index 236c26a40aa..69542d9b3ee 100644 --- a/Number_types/include/CGAL/float.h +++ b/Number_types/include/CGAL/float.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999 Utrecht University (The Netherlands), +// Copyright (c) 1999,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/gmpxx_coercion_traits.h b/Number_types/include/CGAL/gmpxx_coercion_traits.h index f0bb8d41ac6..e53d17bc855 100644 --- a/Number_types/include/CGAL/gmpxx_coercion_traits.h +++ b/Number_types/include/CGAL/gmpxx_coercion_traits.h @@ -1,15 +1,24 @@ -// TODO: Add licence +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org); you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; version 2.1 of the License. +// See the file LICENSE.LGPL distributed with CGAL. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// +// $URL:$ +// $Id:$ // -// Author(s) : Michael Hemmer // -// ============================================================================ +// Author(s) : Michael Hemmer + + /*! \file NiX/Gmp/Coercion_traits.h * \brief Provides specializations of Coercion_traits for the Gmp types. diff --git a/Number_types/include/CGAL/int.h b/Number_types/include/CGAL/int.h index 68ebcbc64cc..1168ed3a0ec 100644 --- a/Number_types/include/CGAL/int.h +++ b/Number_types/include/CGAL/int.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999 Utrecht University (The Netherlands), +// Copyright (c) 1999,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/leda_bigfloat.h b/Number_types/include/CGAL/leda_bigfloat.h index 36d048ea2d8..6b9ad43f789 100644 --- a/Number_types/include/CGAL/leda_bigfloat.h +++ b/Number_types/include/CGAL/leda_bigfloat.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999 Utrecht University (The Netherlands), +// Copyright (c) 1999,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/leda_coercion_traits.h b/Number_types/include/CGAL/leda_coercion_traits.h index 94cfa72ab38..8c748ff6d1c 100644 --- a/Number_types/include/CGAL/leda_coercion_traits.h +++ b/Number_types/include/CGAL/leda_coercion_traits.h @@ -1,15 +1,23 @@ -// TODO: Add licence +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany). +// All rights reserved. +// +// This file is part of CGAL (www.cgal.org); you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; version 2.1 of the License. +// See the file LICENSE.LGPL distributed with CGAL. +// +// Licensees holding a valid commercial license may use this file in +// accordance with the commercial license agreement provided with the software. // // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // -// $URL$ -// $Id$ -// +// $URL:$ +// $Id:$ // -// Author(s) : Michael Hemmer // -// ============================================================================ +// Author(s) : Michael Hemmer + /*! \file NiX/LEDA/Coercion_traits.h * \brief Provides specializations of Coercion_traits for the LEDA number types. diff --git a/Number_types/include/CGAL/leda_integer.h b/Number_types/include/CGAL/leda_integer.h index 8111703f5de..d02220d3d24 100644 --- a/Number_types/include/CGAL/leda_integer.h +++ b/Number_types/include/CGAL/leda_integer.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999 Utrecht University (The Netherlands), +// Copyright (c) 1999,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/leda_rational.h b/Number_types/include/CGAL/leda_rational.h index 0ea52a4a235..a0de7d8fc3c 100644 --- a/Number_types/include/CGAL/leda_rational.h +++ b/Number_types/include/CGAL/leda_rational.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999 Utrecht University (The Netherlands), +// Copyright (c) 1999,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/leda_real.h b/Number_types/include/CGAL/leda_real.h index b8bfe2cdf99..9b69e53ac87 100644 --- a/Number_types/include/CGAL/leda_real.h +++ b/Number_types/include/CGAL/leda_real.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999 Utrecht University (The Netherlands), +// Copyright (c) 1999,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/long_double.h b/Number_types/include/CGAL/long_double.h index f0093beb38a..cb7ca8a3533 100644 --- a/Number_types/include/CGAL/long_double.h +++ b/Number_types/include/CGAL/long_double.h @@ -1,4 +1,4 @@ -// Copyright (c) 2005 Utrecht University (The Netherlands), +// Copyright (c) 2005,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/long_long.h b/Number_types/include/CGAL/long_long.h index 72b06f2558c..629faff18da 100644 --- a/Number_types/include/CGAL/long_long.h +++ b/Number_types/include/CGAL/long_long.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999,2001 Utrecht University (The Netherlands), +// Copyright (c) 1999,2001,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), diff --git a/Number_types/include/CGAL/mpq_class.h b/Number_types/include/CGAL/mpq_class.h index 4b686fa6f9e..bd40ad50410 100644 --- a/Number_types/include/CGAL/mpq_class.h +++ b/Number_types/include/CGAL/mpq_class.h @@ -19,7 +19,7 @@ // $Id$ // // -// Author(s) : Sylvain Pion +// Author(s) : Sylvain Pion, Michael Hemmer #ifndef CGAL_MPQ_CLASS_H #define CGAL_MPQ_CLASS_H diff --git a/Number_types/include/CGAL/mpz_class.h b/Number_types/include/CGAL/mpz_class.h index bd65b738121..09035298e22 100644 --- a/Number_types/include/CGAL/mpz_class.h +++ b/Number_types/include/CGAL/mpz_class.h @@ -1,4 +1,4 @@ -// Copyright (c) 2002,2003 Utrecht University (The Netherlands), +// Copyright (c) 2002,2003,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), @@ -19,7 +19,7 @@ // $Id$ // // -// Author(s) : Sylvain Pion +// Author(s) : Sylvain Pion, Michael Hemmer #ifndef CGAL_MPZ_CLASS_H #define CGAL_MPZ_CLASS_H diff --git a/Number_types/include/CGAL/number_type_basic.h b/Number_types/include/CGAL/number_type_basic.h index 247c637af50..2862f247b79 100644 --- a/Number_types/include/CGAL/number_type_basic.h +++ b/Number_types/include/CGAL/number_type_basic.h @@ -1,4 +1,4 @@ -// Copyright (c) 1999 Utrecht University (The Netherlands), +// Copyright (c) 1999,2007 Utrecht University (The Netherlands), // ETH Zurich (Switzerland), Freie Universitaet Berlin (Germany), // INRIA Sophia-Antipolis (France), Martin-Luther-University Halle-Wittenberg // (Germany), Max-Planck-Institute Saarbruecken (Germany), RISC Linz (Austria), @@ -19,7 +19,7 @@ // $Id$ // // -// Author(s) : Stefan Schirra +// Author(s) : Stefan Schirra, Michael Hemmer #ifndef CGAL_NUMBER_Type_BASIC_H diff --git a/Number_types/include/CGAL/utils.h b/Number_types/include/CGAL/utils.h index 55d11f338b4..d53709fd8c6 100644 --- a/Number_types/include/CGAL/utils.h +++ b/Number_types/include/CGAL/utils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2007 Max-Planck-Institute Saarbruecken (Germany) +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany) // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or @@ -16,7 +16,7 @@ // $Id$ // // -// Author(s) : Sebastian Limbach +// Author(s) : Michael Hemmer #ifndef CGAL_UTILS_H #define CGAL_UTILS_H diff --git a/Number_types/include/CGAL/utils_classes.h b/Number_types/include/CGAL/utils_classes.h index 1a8910e1860..af364537f48 100644 --- a/Number_types/include/CGAL/utils_classes.h +++ b/Number_types/include/CGAL/utils_classes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2007 Max-Planck-Institute Saarbruecken (Germany) +// Copyright (c) 2006-2007 Max-Planck-Institute Saarbruecken (Germany) // All rights reserved. // // This file is part of CGAL (www.cgal.org); you can redistribute it and/or @@ -13,7 +13,7 @@ // $Id$ // // -// Author(s) : Sebastian Limbach +// Author(s) : Michael Hemmer #ifndef CGAL_UTILS_CLASSES_H #define CGAL_UTILS_CLASSES_H