From 82339c4d7d6b36634d40cb2e1f4e0ea4902ff8d5 Mon Sep 17 00:00:00 2001 From: Brad King <brad.king@kitware.com> Date: Mon, 15 Dec 2003 16:30:46 -0500 Subject: [PATCH] ENH: Updated copyright. --- Base64.c | 17 +++++++---------- Base64.h.in | 11 ++++------- Configure.h.in | 11 ++++------- Configure.hxx.in | 11 ++++------- Copyright.txt | 33 +++++++++++++++++++++++++++++++++ Directory.cxx | 11 ++++------- Directory.hxx.in | 11 ++++------- EncodeExecutable.c | 17 +++++++---------- Process.h.in | 7 ++----- ProcessFwd9x.c | 21 +++++++++------------ ProcessUNIX.c | 21 +++++++++------------ ProcessWin32.c | 21 +++++++++------------ RegularExpression.cxx | 11 ++++------- RegularExpression.hxx.in | 11 ++++------- SystemTools.cxx | 11 ++++------- SystemTools.hxx.in | 11 ++++------- kwsysHeaderDump.pl | 11 +++++++++++ kwsysPrivate.h | 11 ++++------- kwsys_std.h.in | 11 ++++------- kwsys_std_fstream.h.in | 11 ++++------- kwsys_std_iosfwd.h.in | 11 ++++------- kwsys_std_iostream.h.in | 11 ++++------- kwsys_std_sstream.h.in | 11 ++++------- test1.cxx | 13 +++++++++++++ testProcess.c | 13 +++++++++++++ 25 files changed, 173 insertions(+), 166 deletions(-) create mode 100644 Copyright.txt diff --git a/Base64.c b/Base64.c index 8eae0a7a..56837299 100644 --- a/Base64.c +++ b/Base64.c @@ -1,17 +1,14 @@ /*========================================================================= -Program: KWSys - Kitware System Library -Module: Base64.c -Language: C++ -Date: $Date$ -Version: $Revision$ + Program: KWSys - Kitware System Library + Module: Base64.c -Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. -See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. =========================================================================*/ #define KWSYS_IN_BASE64_C diff --git a/Base64.h.in b/Base64.h.in index 9edba21a..689caec4 100644 --- a/Base64.h.in +++ b/Base64.h.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: Base64.h.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/Configure.h.in b/Configure.h.in index 9f364577..33fa0803 100644 --- a/Configure.h.in +++ b/Configure.h.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: Configure.h.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/Configure.hxx.in b/Configure.hxx.in index 6456778c..64262313 100644 --- a/Configure.hxx.in +++ b/Configure.hxx.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: Configure.hxx.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/Copyright.txt b/Copyright.txt new file mode 100644 index 00000000..86e0e737 --- /dev/null +++ b/Copyright.txt @@ -0,0 +1,33 @@ +Copyright (c) 2000-2003 Kitware, Inc., Insight Consortium. +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are +met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the + distribution. + + * Neither the name of Kitware nor the names of any contributors may + be used to endorse or promote products derived from this software + without specific prior written permission. + + * Modified source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR +CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/Directory.cxx b/Directory.cxx index d6959406..77ae70d4 100644 --- a/Directory.cxx +++ b/Directory.cxx @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: Directory.cxx - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/Directory.hxx.in b/Directory.hxx.in index 2cc6884e..dd271272 100644 --- a/Directory.hxx.in +++ b/Directory.hxx.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: Directory.hxx.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/EncodeExecutable.c b/EncodeExecutable.c index ef85759a..6f631213 100644 --- a/EncodeExecutable.c +++ b/EncodeExecutable.c @@ -1,17 +1,14 @@ /*========================================================================= -Program: KWSys - Kitware System Library -Module: EncodeExecutable.c -Language: C++ -Date: $Date$ -Version: $Revision$ + Program: KWSys - Kitware System Library + Module: EncodeExecutable.c -Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. -See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. =========================================================================*/ #include <stdio.h> diff --git a/Process.h.in b/Process.h.in index 570993bd..e25c502f 100644 --- a/Process.h.in +++ b/Process.h.in @@ -2,12 +2,9 @@ Program: KWSys - Kitware System Library Module: Process.h.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR diff --git a/ProcessFwd9x.c b/ProcessFwd9x.c index 0e7bb0e1..094de1ef 100644 --- a/ProcessFwd9x.c +++ b/ProcessFwd9x.c @@ -1,17 +1,14 @@ /*========================================================================= -Program: KWSys - Kitware System Library -Module: ProcessFwd9x.c -Language: C++ -Date: $Date$ -Version: $Revision$ - -Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. -See http://www.cmake.org/HTML/Copyright.html for details. - -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. + Program: KWSys - Kitware System Library + Module: ProcessFwd9x.c + + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/ProcessUNIX.c b/ProcessUNIX.c index e2a98d19..51781f42 100644 --- a/ProcessUNIX.c +++ b/ProcessUNIX.c @@ -1,17 +1,14 @@ /*========================================================================= -Program: KWSys - Kitware System Library -Module: ProcessUNIX.c -Language: C++ -Date: $Date$ -Version: $Revision$ - -Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. -See http://www.cmake.org/HTML/Copyright.html for details. - -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. + Program: KWSys - Kitware System Library + Module: ProcessUNIX.c + + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. =========================================================================*/ #define KWSYS_IN_PROCESS_C diff --git a/ProcessWin32.c b/ProcessWin32.c index 6246169d..dc2eeadd 100644 --- a/ProcessWin32.c +++ b/ProcessWin32.c @@ -1,17 +1,14 @@ /*========================================================================= -Program: KWSys - Kitware System Library -Module: ProcessWin32.c -Language: C++ -Date: $Date$ -Version: $Revision$ - -Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. -See http://www.cmake.org/HTML/Copyright.html for details. - -This software is distributed WITHOUT ANY WARRANTY; without even -the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -PURPOSE. See the above copyright notices for more information. + Program: KWSys - Kitware System Library + Module: ProcessWin32.c + + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. =========================================================================*/ #define KWSYS_IN_PROCESS_C diff --git a/RegularExpression.cxx b/RegularExpression.cxx index 688d302c..a74a13e9 100644 --- a/RegularExpression.cxx +++ b/RegularExpression.cxx @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: RegularExpression.cxx - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/RegularExpression.hxx.in b/RegularExpression.hxx.in index 6fb1eccc..3447e0fb 100644 --- a/RegularExpression.hxx.in +++ b/RegularExpression.hxx.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: RegularExpression.hxx.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/SystemTools.cxx b/SystemTools.cxx index 7b55bfe9..3fc4a2a7 100644 --- a/SystemTools.cxx +++ b/SystemTools.cxx @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: SystemTools.cxx - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/SystemTools.hxx.in b/SystemTools.hxx.in index 1d8fd40a..4600ca71 100644 --- a/SystemTools.hxx.in +++ b/SystemTools.hxx.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: SystemTools.hxx.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/kwsysHeaderDump.pl b/kwsysHeaderDump.pl index 730e333f..9912ccd6 100755 --- a/kwsysHeaderDump.pl +++ b/kwsysHeaderDump.pl @@ -1,4 +1,15 @@ #!/usr/bin/perl +# +# Program: KWSys - Kitware System Library +# Module: kwsysHeaderDump.pl +# +# Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. +# See Copyright.txt or http://www.kitware.com/Copyright.htm for details. +# +# This software is distributed WITHOUT ANY WARRANTY; without even +# the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR +# PURPOSE. See the above copyright notices for more information. +# if ( $#ARGV+1 < 2 ) { diff --git a/kwsysPrivate.h b/kwsysPrivate.h index 2435a85f..eabee0eb 100644 --- a/kwsysPrivate.h +++ b/kwsysPrivate.h @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: kwsysPrivate.h - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/kwsys_std.h.in b/kwsys_std.h.in index 6078892e..72924ec7 100644 --- a/kwsys_std.h.in +++ b/kwsys_std.h.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: kwsys_std.h.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/kwsys_std_fstream.h.in b/kwsys_std_fstream.h.in index 5dd66c05..6ae4856f 100644 --- a/kwsys_std_fstream.h.in +++ b/kwsys_std_fstream.h.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: kwsys_std_fstream.h.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/kwsys_std_iosfwd.h.in b/kwsys_std_iosfwd.h.in index 06fbb3d1..f9a851b9 100644 --- a/kwsys_std_iosfwd.h.in +++ b/kwsys_std_iosfwd.h.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: kwsys_std_iosfwd.h.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/kwsys_std_iostream.h.in b/kwsys_std_iostream.h.in index 5ca2f1d0..d04b80ab 100644 --- a/kwsys_std_iostream.h.in +++ b/kwsys_std_iostream.h.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: kwsys_std_iostream.h.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/kwsys_std_sstream.h.in b/kwsys_std_sstream.h.in index 0642a6d7..6881e6b7 100644 --- a/kwsys_std_sstream.h.in +++ b/kwsys_std_sstream.h.in @@ -2,15 +2,12 @@ Program: KWSys - Kitware System Library Module: kwsys_std_sstream.h.in - Language: C++ - Date: $Date$ - Version: $Revision$ - Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved. - See http://www.cmake.org/HTML/Copyright.html for details. + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notices for more information. =========================================================================*/ diff --git a/test1.cxx b/test1.cxx index 84c3f8d8..9cdf736d 100644 --- a/test1.cxx +++ b/test1.cxx @@ -1,3 +1,16 @@ +/*========================================================================= + + Program: KWSys - Kitware System Library + Module: test1.cxx + + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ #include <kwsys/Directory.hxx> #include <kwsys/Process.h> #include <kwsys/std/iostream> diff --git a/testProcess.c b/testProcess.c index 1b4ea748..c4a8bcf4 100644 --- a/testProcess.c +++ b/testProcess.c @@ -1,3 +1,16 @@ +/*========================================================================= + + Program: KWSys - Kitware System Library + Module: testProcess.c + + Copyright (c) Kitware, Inc., Insight Consortium. All rights reserved. + See Copyright.txt or http://www.kitware.com/Copyright.htm for details. + + This software is distributed WITHOUT ANY WARRANTY; without even + the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR + PURPOSE. See the above copyright notices for more information. + +=========================================================================*/ #include <kwsys/Process.h> #include <stdio.h> #include <stdlib.h> -- GitLab