From 8b506ceac85d86c25d4d7d33f0591e736fa4045e Mon Sep 17 00:00:00 2001 From: Ronald Garcia Date: Wed, 26 Jun 2002 14:55:26 +0000 Subject: [PATCH] Added copyright notices where needed. [SVN r14243] --- doc/index.html | 14 +++++++++++++- include/boost/multi_array.hpp | 12 ++++++++++++ include/boost/multi_array/algorithm.hpp | 12 ++++++++++++ include/boost/multi_array/base.hpp | 12 ++++++++++++ include/boost/multi_array/collection_concept.hpp | 12 ++++++++++++ include/boost/multi_array/concept_checks.hpp | 12 ++++++++++++ include/boost/multi_array/copy_array.hpp | 12 ++++++++++++ include/boost/multi_array/extent_gen.hpp | 12 ++++++++++++ include/boost/multi_array/extent_range.hpp | 12 ++++++++++++ include/boost/multi_array/index_gen.hpp | 12 ++++++++++++ include/boost/multi_array/index_range.hpp | 12 ++++++++++++ include/boost/multi_array/iterator.hpp | 12 ++++++++++++ include/boost/multi_array/iterator_adaptors.hpp | 4 ++++ include/boost/multi_array/multi_array_ref.hpp | 12 ++++++++++++ include/boost/multi_array/range_list.hpp | 12 ++++++++++++ include/boost/multi_array/storage_order.hpp | 12 ++++++++++++ include/boost/multi_array/subarray.hpp | 12 ++++++++++++ include/boost/multi_array/types.hpp | 12 ++++++++++++ include/boost/multi_array/view.hpp | 12 ++++++++++++ 19 files changed, 221 insertions(+), 1 deletion(-) diff --git a/doc/index.html b/doc/index.html index bfc8e47..76574c0 100644 --- a/doc/index.html +++ b/doc/index.html @@ -1,4 +1,16 @@ - + + + MultiDimensional Array Libary diff --git a/include/boost/multi_array.hpp b/include/boost/multi_array.hpp index a9481b9..cb5bb0a 100644 --- a/include/boost/multi_array.hpp +++ b/include/boost/multi_array.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_MULTI_ARRAY_RG071801_HPP #define BOOST_MULTI_ARRAY_RG071801_HPP diff --git a/include/boost/multi_array/algorithm.hpp b/include/boost/multi_array/algorithm.hpp index 71e07e7..2ecdc22 100644 --- a/include/boost/multi_array/algorithm.hpp +++ b/include/boost/multi_array/algorithm.hpp @@ -26,6 +26,18 @@ // representations about the suitability of this software for any // purpose. It is provided "as is" without express or implied warranty. // +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #include "boost/iterator.hpp" diff --git a/include/boost/multi_array/base.hpp b/include/boost/multi_array/base.hpp index 67807d2..f20bcf2 100644 --- a/include/boost/multi_array/base.hpp +++ b/include/boost/multi_array/base.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BASE_RG071801_HPP #define BASE_RG071801_HPP diff --git a/include/boost/multi_array/collection_concept.hpp b/include/boost/multi_array/collection_concept.hpp index 36195f5..766352e 100644 --- a/include/boost/multi_array/collection_concept.hpp +++ b/include/boost/multi_array/collection_concept.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef COLLECTION_CONCEPT_RG103101_HPP #define COLLECTION_CONCEPT_RG103101_HPP diff --git a/include/boost/multi_array/concept_checks.hpp b/include/boost/multi_array/concept_checks.hpp index 2e470ad..a866231 100644 --- a/include/boost/multi_array/concept_checks.hpp +++ b/include/boost/multi_array/concept_checks.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_MULTI_ARRAY_CONCEPT_CHECKS_RG110101_HPP #define BOOST_MULTI_ARRAY_CONCEPT_CHECKS_RG110101_HPP diff --git a/include/boost/multi_array/copy_array.hpp b/include/boost/multi_array/copy_array.hpp index 5e47d8a..00825e5 100644 --- a/include/boost/multi_array/copy_array.hpp +++ b/include/boost/multi_array/copy_array.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef COPY_ARRAY_RG092101_HPP #define COPY_ARRAY_RG092101_HPP diff --git a/include/boost/multi_array/extent_gen.hpp b/include/boost/multi_array/extent_gen.hpp index 46429a4..1c40e87 100644 --- a/include/boost/multi_array/extent_gen.hpp +++ b/include/boost/multi_array/extent_gen.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_EXTENT_GEN_RG071801_HPP #define BOOST_EXTENT_GEN_RG071801_HPP diff --git a/include/boost/multi_array/extent_range.hpp b/include/boost/multi_array/extent_range.hpp index ddd9f68..18ec3e9 100644 --- a/include/boost/multi_array/extent_range.hpp +++ b/include/boost/multi_array/extent_range.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_EXTENT_RANGE_RG071801_HPP #define BOOST_EXTENT_RANGE_RG071801_HPP diff --git a/include/boost/multi_array/index_gen.hpp b/include/boost/multi_array/index_gen.hpp index d5c714e..fa28052 100644 --- a/include/boost/multi_array/index_gen.hpp +++ b/include/boost/multi_array/index_gen.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_INDEX_GEN_RG071801_HPP #define BOOST_INDEX_GEN_RG071801_HPP diff --git a/include/boost/multi_array/index_range.hpp b/include/boost/multi_array/index_range.hpp index 7dfcbe3..1565b8a 100644 --- a/include/boost/multi_array/index_range.hpp +++ b/include/boost/multi_array/index_range.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_INDEX_RANGE_RG071801_HPP #define BOOST_INDEX_RANGE_RG071801_HPP diff --git a/include/boost/multi_array/iterator.hpp b/include/boost/multi_array/iterator.hpp index 356fb56..528b9a6 100644 --- a/include/boost/multi_array/iterator.hpp +++ b/include/boost/multi_array/iterator.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef ITERATOR_RG071801_HPP #define ITERATOR_RG071801_HPP diff --git a/include/boost/multi_array/iterator_adaptors.hpp b/include/boost/multi_array/iterator_adaptors.hpp index 2359c5a..1e38e66 100644 --- a/include/boost/multi_array/iterator_adaptors.hpp +++ b/include/boost/multi_array/iterator_adaptors.hpp @@ -10,6 +10,10 @@ // "as is" without express or implied warranty, and with no claim as // to its suitability for any purpose. // + +// Thes code is modified from its original form to meet the needs of +// Boost.MultiArray. + // Revision History: // 27 Mar 2002 Ronald Garcia diff --git a/include/boost/multi_array/multi_array_ref.hpp b/include/boost/multi_array/multi_array_ref.hpp index 43418df..ef41b98 100644 --- a/include/boost/multi_array/multi_array_ref.hpp +++ b/include/boost/multi_array/multi_array_ref.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_MULTI_ARRAY_REF_RG071801_HPP #define BOOST_MULTI_ARRAY_REF_RG071801_HPP diff --git a/include/boost/multi_array/range_list.hpp b/include/boost/multi_array/range_list.hpp index 9d0aaec..143da09 100644 --- a/include/boost/multi_array/range_list.hpp +++ b/include/boost/multi_array/range_list.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef RANGE_LIST_RG072501_HPP #define RANGE_LIST_RG072501_HPP // diff --git a/include/boost/multi_array/storage_order.hpp b/include/boost/multi_array/storage_order.hpp index e8e571c..f8e69b0 100644 --- a/include/boost/multi_array/storage_order.hpp +++ b/include/boost/multi_array/storage_order.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_STORAGE_ORDER_RG071801_HPP #define BOOST_STORAGE_ORDER_RG071801_HPP diff --git a/include/boost/multi_array/subarray.hpp b/include/boost/multi_array/subarray.hpp index 5b1ab06..cd7e39a 100644 --- a/include/boost/multi_array/subarray.hpp +++ b/include/boost/multi_array/subarray.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef SUBARRAY_RG071801_HPP #define SUBARRAY_RG071801_HPP diff --git a/include/boost/multi_array/types.hpp b/include/boost/multi_array/types.hpp index 2f1cb1e..159bf00 100644 --- a/include/boost/multi_array/types.hpp +++ b/include/boost/multi_array/types.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_MULTI_ARRAY_TYPES_RG071801_HPP #define BOOST_MULTI_ARRAY_TYPES_RG071801_HPP diff --git a/include/boost/multi_array/view.hpp b/include/boost/multi_array/view.hpp index fe69ba6..8d19e1c 100644 --- a/include/boost/multi_array/view.hpp +++ b/include/boost/multi_array/view.hpp @@ -1,3 +1,15 @@ +// Copyright (C) 2002 Ronald Garcia +// +// Permission to copy, use, sell and distribute this software is granted +// provided this copyright notice appears in all copies. +// Permission to modify the code and to distribute modified code is granted +// provided this copyright notice appears in all copies, and a notice +// that the code was modified is included with the copyright notice. +// +// This software is provided "as is" without express or implied warranty, +// and with no claim as to its suitability for any purpose. +// + #ifndef BOOST_MULTI_ARRAY_VIEW_RG071301_HPP #define BOOST_MULTI_ARRAY_VIEW_RG071301_HPP