diff --git a/AUTHORS b/AUTHORS index e91c467..d63b3c9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,3 @@ -Martin F. Krafft +Martin F. Krafft Paul Harris Sylvain Bougerel diff --git a/ChangeLog b/ChangeLog index ff66ffd..1047430 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,12 +12,12 @@ libkdtree++ ChangeLog the construction of a filled tree. - _Range is now more easy to construct. -2004-11-15 Martin F. Krafft (madduck@madduck.net) +2004-11-15 Martin F. Krafft (libkdtree@pobox.madduck.net) - fixed numerous little bugs that led to compilation problems - changed code to compile cleanly with GCC 3.4 and GCC 4.0 -2004-11-06 Martin F. Krafft (madduck@madduck.net) +2004-11-06 Martin F. Krafft (libkdtree@pobox.madduck.net) - reverted to optimise() to prevent API change, and added an optimize() passthrough method with an appropriate comment. @@ -34,7 +34,7 @@ libkdtree++ ChangeLog - Added a new method: count_within_range(). - Fixed bug in rend(). -2004-11-04 Martin F. Krafft (madduck@madduck.net) +2004-11-04 Martin F. Krafft (libkdtree@pobox.madduck.net) - Integrated patch by Paul Harris to fix a logic error pertaining to OutputIterators in find_within_range. find_within_range() now @@ -43,16 +43,16 @@ libkdtree++ ChangeLog a dimensional overflow for trees with depths >= K. Thanks (again) Paul! - Made some improvements to the autotools files. -2004-05-11 Martin F. Krafft (madduck@madduck.net) +2004-05-11 Martin F. Krafft (libkdtree@pobox.madduck.net) - Fixed CFlags and Libs entries in pkgconfig file. -2004-05-11 Martin F. Krafft (madduck@madduck.net) +2004-05-11 Martin F. Krafft (libkdtree@pobox.madduck.net) - Initial release. COPYRIGHT -- - libkdtree++ is (c) 2004-2007 Martin F. Krafft + libkdtree++ is (c) 2004-2007 Martin F. Krafft and distributed under the terms of the Artistic License 2.0. See the ./COPYING file in the source tree root for more information. diff --git a/NEWS b/NEWS index ea0440d..06f8d8c 100644 --- a/NEWS +++ b/NEWS @@ -8,4 +8,4 @@ libkdtree++ NEWS http://git.debian.org/?p=libkdtree/libkdtree.git;a=summary -Martin F. Krafft +Martin F. Krafft diff --git a/README b/README index c091d85..987aee1 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ libkdtree++ README ================== -libkdtree++ is (c) 2004-2007 Martin F. Krafft +libkdtree++ is (c) 2004-2007 Martin F. Krafft and distributed under the terms of the Artistic License 2.0. See the file LICENSE in the source distribution for more information. diff --git a/autogen.sh b/autogen.sh index 4fd17ff..b746240 100755 --- a/autogen.sh +++ b/autogen.sh @@ -10,7 +10,7 @@ exec ./configure $@ # COPYRIGHT -- # # This file is part of libkdtree++, a C++ template KD-Tree sorting container. -# libkdtree++ is (c) 2004-2007 Martin F. Krafft +# libkdtree++ is (c) 2004-2007 Martin F. Krafft # and distributed under the terms of the Artistic License 2.0. # See the ./COPYING file in the source tree root for more information. # diff --git a/doc/index.txt b/doc/index.txt index e27b3dc..db54286 100644 --- a/doc/index.txt +++ b/doc/index.txt @@ -2,7 +2,7 @@ @mainpage libkdtree++: a C++ template container for KD-Tree sorting -Author: Martin F. Krafft +Author: Martin F. Krafft Source: http://git.debian.org/?p=libkdtree/libkdtree.git;a=summary diff --git a/examples/test_kdtree.cpp b/examples/test_kdtree.cpp index 971df3c..2603a32 100644 --- a/examples/test_kdtree.cpp +++ b/examples/test_kdtree.cpp @@ -84,7 +84,7 @@ int main() /* COPYRIGHT -- * * This file is part of libkdtree++, a C++ template KD-Tree sorting container. - * libkdtree++ is (c) 2004-2007 Martin F. Krafft + * libkdtree++ is (c) 2004-2007 Martin F. Krafft * and distributed under the terms of the Artistic License 2.0. * See the ./COPYING file in the source tree root for more information. * diff --git a/kdtree++/accessor.hpp b/kdtree++/accessor.hpp index ceaa12d..fbf3cb9 100644 --- a/kdtree++/accessor.hpp +++ b/kdtree++/accessor.hpp @@ -1,7 +1,7 @@ /** \file * Defines the interface for the Accessor class. * - * \author Martin F. Krafft + * \author Martin F. Krafft */ #ifndef INCLUDE_KDTREE_ACCESSOR_HPP @@ -30,7 +30,7 @@ namespace KDTree /* COPYRIGHT -- * * This file is part of libkdtree++, a C++ template KD-Tree sorting container. - * libkdtree++ is (c) 2004-2007 Martin F. Krafft + * libkdtree++ is (c) 2004-2007 Martin F. Krafft * and distributed under the terms of the Artistic License 2.0. * See the ./COPYING file in the source tree root for more information. * diff --git a/kdtree++/allocator.hpp b/kdtree++/allocator.hpp index d2cf676..403f7f2 100644 --- a/kdtree++/allocator.hpp +++ b/kdtree++/allocator.hpp @@ -1,7 +1,7 @@ /** \file * Defines the allocator interface as used by the KDTree class. * - * \author Martin F. Krafft + * \author Martin F. Krafft */ #ifndef INCLUDE_KDTREE_ALLOCATOR_HPP @@ -69,7 +69,7 @@ namespace KDTree /* COPYRIGHT -- * * This file is part of libkdtree++, a C++ template KD-Tree sorting container. - * libkdtree++ is (c) 2004-2007 Martin F. Krafft + * libkdtree++ is (c) 2004-2007 Martin F. Krafft * and distributed under the terms of the Artistic License 2.0. * See the ./COPYING file in the source tree root for more information. * diff --git a/kdtree++/iterator.hpp b/kdtree++/iterator.hpp index 3fd2f0a..e1d97af 100644 --- a/kdtree++/iterator.hpp +++ b/kdtree++/iterator.hpp @@ -1,7 +1,7 @@ /** \file * Defines interfaces for iterators as used by the KDTree class. * - * \author Martin F. Krafft + * \author Martin F. Krafft */ #ifndef INCLUDE_KDTREE_ITERATOR_HPP @@ -244,7 +244,7 @@ namespace KDTree /* COPYRIGHT -- * * This file is part of libkdtree++, a C++ template KD-Tree sorting container. - * libkdtree++ is (c) 2004-2007 Martin F. Krafft + * libkdtree++ is (c) 2004-2007 Martin F. Krafft * and distributed under the terms of the Artistic License 2.0. * See the ./COPYING file in the source tree root for more information. * diff --git a/kdtree++/kdtree.hpp b/kdtree++/kdtree.hpp index 17b51cf..b7ff6d8 100644 --- a/kdtree++/kdtree.hpp +++ b/kdtree++/kdtree.hpp @@ -1,7 +1,7 @@ /** \file * Defines the interface for the KDTree class. * - * \author Martin F. Krafft + * \author Martin F. Krafft */ #ifndef INCLUDE_KDTREE_KDTREE_HPP @@ -853,7 +853,7 @@ namespace KDTree /* COPYRIGHT -- * * This file is part of libkdtree++, a C++ template KD-Tree sorting container. - * libkdtree++ is (c) 2004-2007 Martin F. Krafft + * libkdtree++ is (c) 2004-2007 Martin F. Krafft * and distributed under the terms of the Artistic License 2.0. * See the ./COPYING file in the source tree root for more information. * Parts of this file are (c) 2004-2007 Paul Harris . diff --git a/kdtree++/node.hpp b/kdtree++/node.hpp index 09283fb..8391cbe 100644 --- a/kdtree++/node.hpp +++ b/kdtree++/node.hpp @@ -1,7 +1,7 @@ /** \file * Defines interfaces for nodes as used by the KDTree class. * - * \author Martin F. Krafft + * \author Martin F. Krafft */ #ifndef INCLUDE_KDTREE_NODE_HPP @@ -123,7 +123,7 @@ namespace KDTree /* COPYRIGHT -- * * This file is part of libkdtree++, a C++ template KD-Tree sorting container. - * libkdtree++ is (c) 2004-2007 Martin F. Krafft + * libkdtree++ is (c) 2004-2007 Martin F. Krafft * and distributed under the terms of the Artistic License 2.0. * See the ./COPYING file in the source tree root for more information. * diff --git a/kdtree++/region.hpp b/kdtree++/region.hpp index 11d0d92..5413eca 100644 --- a/kdtree++/region.hpp +++ b/kdtree++/region.hpp @@ -1,7 +1,7 @@ /** \file * Defines the interface of the _Region class. * - * \author Martin F. Krafft + * \author Martin F. Krafft */ #ifndef INCLUDE_KDTREE_REGION_HPP @@ -109,7 +109,7 @@ namespace KDTree /* COPYRIGHT -- * * This file is part of libkdtree++, a C++ template KD-Tree sorting container. - * libkdtree++ is (c) 2004-2007 Martin F. Krafft + * libkdtree++ is (c) 2004-2007 Martin F. Krafft * and distributed under the terms of the Artistic License 2.0. * See the ./COPYING file in the source tree root for more information. *