From 61741119d190f2075e033b030287f996b51c876d Mon Sep 17 00:00:00 2001 From: wolf Date: Mon, 7 Jan 2002 09:41:06 +0000 Subject: [PATCH] Add copyright notices. git-svn-id: https://svn.dealii.org/trunk@5347 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-1/step-1.cc | 13 ++++++++++++- deal.II/examples/step-10/step-10.cc | 10 ++++++++++ deal.II/examples/step-11/step-11.cc | 10 ++++++++++ deal.II/examples/step-12/step-12.cc | 10 ++++++++++ deal.II/examples/step-2/step-2.cc | 10 ++++++++++ deal.II/examples/step-3/step-3.cc | 10 ++++++++++ deal.II/examples/step-4/step-4.cc | 10 ++++++++++ deal.II/examples/step-5/step-5.cc | 10 ++++++++++ deal.II/examples/step-6/step-6.cc | 10 ++++++++++ deal.II/examples/step-7/step-7.cc | 10 ++++++++++ deal.II/examples/step-8/step-8.cc | 10 ++++++++++ deal.II/examples/step-9/step-9.cc | 10 ++++++++++ 12 files changed, 122 insertions(+), 1 deletion(-) diff --git a/deal.II/examples/step-1/step-1.cc b/deal.II/examples/step-1/step-1.cc index de2971101d..8816680bf7 100644 --- a/deal.II/examples/step-1/step-1.cc +++ b/deal.II/examples/step-1/step-1.cc @@ -1,6 +1,17 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 1999 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 1999, 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + + // The most fundamental class in the // library is the ``Triangulation'' // class, which is declared here: @@ -29,7 +40,6 @@ #include - // In the following function, we // simply use the unit square as // domain and produce a globally @@ -231,3 +241,4 @@ int main () first_grid (); second_grid (); }; + diff --git a/deal.II/examples/step-10/step-10.cc b/deal.II/examples/step-10/step-10.cc index 5a03cabb6a..1d3f033c9b 100644 --- a/deal.II/examples/step-10/step-10.cc +++ b/deal.II/examples/step-10/step-10.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, Ralf Hartmann, University of Heidelberg, 2001 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // The first of the following include // files are probably well-known by // now and need no further diff --git a/deal.II/examples/step-11/step-11.cc b/deal.II/examples/step-11/step-11.cc index 757ad155d6..c9eb4f20f5 100644 --- a/deal.II/examples/step-11/step-11.cc +++ b/deal.II/examples/step-11/step-11.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 2001 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // As usual, the program starts with // a rather long list of include // files which you are probably diff --git a/deal.II/examples/step-12/step-12.cc b/deal.II/examples/step-12/step-12.cc index b9111306dd..0695675e26 100644 --- a/deal.II/examples/step-12/step-12.cc +++ b/deal.II/examples/step-12/step-12.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Ralf Hartmann, University of Heidelberg, 2001 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // The first few files have already // been covered in previous examples // and will thus not be further diff --git a/deal.II/examples/step-2/step-2.cc b/deal.II/examples/step-2/step-2.cc index c78868998d..65e7134e5c 100644 --- a/deal.II/examples/step-2/step-2.cc +++ b/deal.II/examples/step-2/step-2.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 1999 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 1999, 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // The following includes are just // like for the previous program, so // will not be commented further diff --git a/deal.II/examples/step-3/step-3.cc b/deal.II/examples/step-3/step-3.cc index 3bbc06d8fe..893fe897d8 100644 --- a/deal.II/examples/step-3/step-3.cc +++ b/deal.II/examples/step-3/step-3.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 1999 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 1999, 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // These include files are already // known to you. They declare the // classes which handle diff --git a/deal.II/examples/step-4/step-4.cc b/deal.II/examples/step-4/step-4.cc index 7ab1d213f1..bb4f71ac93 100644 --- a/deal.II/examples/step-4/step-4.cc +++ b/deal.II/examples/step-4/step-4.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 1999 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 1999, 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // The first few (many?) include // files have already been used in // the previous example, so we will diff --git a/deal.II/examples/step-5/step-5.cc b/deal.II/examples/step-5/step-5.cc index 9d8c8e8b2b..493a03c65f 100644 --- a/deal.II/examples/step-5/step-5.cc +++ b/deal.II/examples/step-5/step-5.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 1999 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 1999, 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // Again, the first few include files // are already known, so we won't // comment on them: diff --git a/deal.II/examples/step-6/step-6.cc b/deal.II/examples/step-6/step-6.cc index 26c77d6609..ae62eed7b7 100644 --- a/deal.II/examples/step-6/step-6.cc +++ b/deal.II/examples/step-6/step-6.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 2000 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // The first few files have already // been covered in previous examples // and will thus not be further diff --git a/deal.II/examples/step-7/step-7.cc b/deal.II/examples/step-7/step-7.cc index 9475ec96b0..ee9ac38b67 100644 --- a/deal.II/examples/step-7/step-7.cc +++ b/deal.II/examples/step-7/step-7.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth and Ralf Hartmann, University of Heidelberg, 2000 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // These first include files have all // been treated in previous examples, // so we won't explain what is in diff --git a/deal.II/examples/step-8/step-8.cc b/deal.II/examples/step-8/step-8.cc index d2980f1311..834569c0f4 100644 --- a/deal.II/examples/step-8/step-8.cc +++ b/deal.II/examples/step-8/step-8.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 2000 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // As usual, the first few include // files are already known, so we // will not comment on them further. diff --git a/deal.II/examples/step-9/step-9.cc b/deal.II/examples/step-9/step-9.cc index 9cb7545ec7..a534ff8792 100644 --- a/deal.II/examples/step-9/step-9.cc +++ b/deal.II/examples/step-9/step-9.cc @@ -1,6 +1,16 @@ /* $Id$ */ /* Author: Wolfgang Bangerth, University of Heidelberg, 2000 */ +/* $Id$ */ +/* Version: $Name$ */ +/* */ +/* Copyright (C) 2000, 2001, 2002 by the deal.II authors */ +/* */ +/* This file is subject to QPL and may not be distributed */ +/* without copyright and license information. Please refer */ +/* to the file deal.II/doc/license.html for the text and */ +/* further information on this license. */ + // Just as in previous examples, we // have to include several files of // which the meaning has already been -- 2.39.5