From 98fa979aefeb9b99d1a92ef91af39569707b7290 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Tue, 4 Feb 2003 13:35:06 +0000 Subject: [PATCH] Added copyright. [SVN r17197] --- example/scoped_ptr_example.cpp | 8 ++++++++ example/scoped_ptr_example.hpp | 8 ++++++++ example/scoped_ptr_example_test.cpp | 8 ++++++++ example/shared_ptr_example2.cpp | 8 ++++++++ example/shared_ptr_example2.hpp | 8 ++++++++ example/shared_ptr_example2_test.cpp | 8 ++++++++ 6 files changed, 48 insertions(+) diff --git a/example/scoped_ptr_example.cpp b/example/scoped_ptr_example.cpp index 3e2e511..b15356b 100644 --- a/example/scoped_ptr_example.cpp +++ b/example/scoped_ptr_example.cpp @@ -1,5 +1,13 @@ // Boost scoped_ptr_example implementation file -----------------------------// +// (C) Copyright Beman Dawes 2001. Permission to copy, +// use, modify, sell and distribute this software is granted provided this +// copyright notice appears in all copies. This software is provided "as is" +// without express or implied warranty, and with no claim as to its +// suitability for any purpose. + +// See http://www.boost.org for most recent version including documentation. + #include "scoped_ptr_example.hpp" #include diff --git a/example/scoped_ptr_example.hpp b/example/scoped_ptr_example.hpp index d3009f7..14c1c6b 100644 --- a/example/scoped_ptr_example.hpp +++ b/example/scoped_ptr_example.hpp @@ -1,5 +1,13 @@ // Boost scoped_ptr_example header file ------------------------------------// +// (C) Copyright Beman Dawes 2001. Permission to copy, +// use, modify, sell and distribute this software is granted provided this +// copyright notice appears in all copies. This software is provided "as is" +// without express or implied warranty, and with no claim as to its +// suitability for any purpose. + +// See http://www.boost.org for most recent version including documentation. + #include #include diff --git a/example/scoped_ptr_example_test.cpp b/example/scoped_ptr_example_test.cpp index 1b77af2..4037997 100644 --- a/example/scoped_ptr_example_test.cpp +++ b/example/scoped_ptr_example_test.cpp @@ -1,5 +1,13 @@ // Boost scoped_ptr_example_test main program -------------------------------// +// (C) Copyright Beman Dawes 2001. Permission to copy, +// use, modify, sell and distribute this software is granted provided this +// copyright notice appears in all copies. This software is provided "as is" +// without express or implied warranty, and with no claim as to its +// suitability for any purpose. + +// See http://www.boost.org for most recent version including documentation. + #include "scoped_ptr_example.hpp" int main() diff --git a/example/shared_ptr_example2.cpp b/example/shared_ptr_example2.cpp index e062a1f..cbf69ec 100644 --- a/example/shared_ptr_example2.cpp +++ b/example/shared_ptr_example2.cpp @@ -1,5 +1,13 @@ // Boost shared_ptr_example2 implementation file -----------------------------// +// (C) Copyright Beman Dawes 2001. Permission to copy, +// use, modify, sell and distribute this software is granted provided this +// copyright notice appears in all copies. This software is provided "as is" +// without express or implied warranty, and with no claim as to its +// suitability for any purpose. + +// See http://www.boost.org for most recent version including documentation. + #include "shared_ptr_example2.hpp" #include diff --git a/example/shared_ptr_example2.hpp b/example/shared_ptr_example2.hpp index 9b63fc9..bb9050e 100644 --- a/example/shared_ptr_example2.hpp +++ b/example/shared_ptr_example2.hpp @@ -1,5 +1,13 @@ // Boost shared_ptr_example2 header file -----------------------------------// +// (C) Copyright Beman Dawes 2001. Permission to copy, +// use, modify, sell and distribute this software is granted provided this +// copyright notice appears in all copies. This software is provided "as is" +// without express or implied warranty, and with no claim as to its +// suitability for any purpose. + +// See http://www.boost.org for most recent version including documentation. + #include // This example demonstrates the handle/body idiom (also called pimpl and diff --git a/example/shared_ptr_example2_test.cpp b/example/shared_ptr_example2_test.cpp index 3a2cf53..a03511e 100644 --- a/example/shared_ptr_example2_test.cpp +++ b/example/shared_ptr_example2_test.cpp @@ -1,5 +1,13 @@ // Boost shared_ptr_example2_test main program ------------------------------// +// (C) Copyright Beman Dawes 2001. Permission to copy, +// use, modify, sell and distribute this software is granted provided this +// copyright notice appears in all copies. This software is provided "as is" +// without express or implied warranty, and with no claim as to its +// suitability for any purpose. + +// See http://www.boost.org for most recent version including documentation. + #include "shared_ptr_example2.hpp" int main()