From b6c826a1397d71bb7a83fea2ba17b2746f755d34 Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Mon, 2 Feb 2004 22:16:36 +0000 Subject: [PATCH] shared_container_iterator library: - updated Copyright and License notices - Added shared_iterator_test to the iterator test suite. [SVN r22140] --- shared_container_iterator.html | 9 ++++----- shared_iterator_example1.cpp | 9 +++++---- shared_iterator_example2.cpp | 9 +++++---- shared_iterator_example3.cpp | 9 +++++---- shared_iterator_test.cpp | 19 +++++++++++++++---- 5 files changed, 34 insertions(+), 21 deletions(-) diff --git a/shared_container_iterator.html b/shared_container_iterator.html index 1b65ca2..a5c6577 100644 --- a/shared_container_iterator.html +++ b/shared_container_iterator.html @@ -312,11 +312,10 @@ the previous two. Last modified: Mon Aug 11 11:27:03 EST 2003 -

© Copyright Ronald Garcia 2002. Permission to copy, use, -modify, sell and distribute this document is granted provided this copyright -notice appears in all copies. This document is provided "as is" -without express or implied warranty, and with no claim as to its suitability for -any purpose.

+

© Copyright 2003 The Trustees of Indiana University. + Use, modification and distribution is subject to the Boost Software + License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at + http:www.boost.org/LICENSE_1_0.txt)

diff --git a/shared_iterator_example1.cpp b/shared_iterator_example1.cpp index a6a8235..f88e094 100644 --- a/shared_iterator_example1.cpp +++ b/shared_iterator_example1.cpp @@ -1,7 +1,8 @@ -// (C) Copyright Ronald Garcia 2002. 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. +// Copyright 2003 The Trustees of Indiana University. + +// Use, modification and distribution is subject to the Boost Software +// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #include "boost/shared_container_iterator.hpp" #include "boost/shared_ptr.hpp" diff --git a/shared_iterator_example2.cpp b/shared_iterator_example2.cpp index 10659f7..a957707 100644 --- a/shared_iterator_example2.cpp +++ b/shared_iterator_example2.cpp @@ -1,7 +1,8 @@ -// (C) Copyright Ronald Garcia 2002. 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. +// Copyright 2003 The Trustees of Indiana University. + +// Use, modification and distribution is subject to the Boost Software +// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #include "boost/shared_container_iterator.hpp" #include "boost/shared_ptr.hpp" diff --git a/shared_iterator_example3.cpp b/shared_iterator_example3.cpp index 9a492f8..5615d45 100644 --- a/shared_iterator_example3.cpp +++ b/shared_iterator_example3.cpp @@ -1,7 +1,8 @@ -// (C) Copyright Ronald Garcia 2002. 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. +// Copyright 2003 The Trustees of Indiana University. + +// Use, modification and distribution is subject to the Boost Software +// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) #include "boost/shared_container_iterator.hpp" #include "boost/shared_ptr.hpp" diff --git a/shared_iterator_test.cpp b/shared_iterator_test.cpp index 80dfdbf..ff5b9c6 100644 --- a/shared_iterator_test.cpp +++ b/shared_iterator_test.cpp @@ -1,7 +1,18 @@ -// (C) Copyright Ronald Garcia 2003. 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. +// Copyright 2003 The Trustees of Indiana University. + +// Use, modification and distribution is subject to the Boost Software +// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +// Shared container iterator adaptor +// Author: Ronald Garcia +// See http://boost.org/libs/utility/shared_container_iterator.html +// for documentation. + +// +// shared_iterator_test.cpp - Regression tests for shared_container_iterator. +// + #include "boost/shared_container_iterator.hpp" #include "boost/shared_ptr.hpp"