Skip to content

Commit

Permalink
email address update
Browse files Browse the repository at this point in the history
  • Loading branch information
madduck committed Sep 29, 2007
1 parent 7251972 commit a14fce3
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Martin F. Krafft <madduck@madduck.net>
Martin F. Krafft <libkdtree@pobox.madduck.net>
Paul Harris <[email protected]>
Sylvain Bougerel <[email protected]>
12 changes: 6 additions & 6 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand All @@ -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 <madduck@madduck.net>
libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
and distributed under the terms of the Artistic License 2.0.
See the ./COPYING file in the source tree root for more information.

Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ libkdtree++ NEWS

http://git.debian.org/?p=libkdtree/libkdtree.git;a=summary

Martin F. Krafft <madduck@madduck.net>
Martin F. Krafft <libkdtree@pobox.madduck.net>
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
libkdtree++ README
==================

libkdtree++ is (c) 2004-2007 Martin F. Krafft <madduck@madduck.net>
libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
and distributed under the terms of the Artistic License 2.0.
See the file LICENSE in the source distribution for more information.

Expand Down
2 changes: 1 addition & 1 deletion autogen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 <madduck@madduck.net>
# libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
# and distributed under the terms of the Artistic License 2.0.
# See the ./COPYING file in the source tree root for more information.
#
Expand Down
2 changes: 1 addition & 1 deletion doc/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

@mainpage libkdtree++: a C++ template container for KD-Tree sorting

Author: Martin F. Krafft <madduck@madduck.net>
Author: Martin F. Krafft <libkdtree@pobox.madduck.net>

Source:
http://git.debian.org/?p=libkdtree/libkdtree.git;a=summary
Expand Down
2 changes: 1 addition & 1 deletion examples/test_kdtree.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 <madduck@madduck.net>
* libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
* and distributed under the terms of the Artistic License 2.0.
* See the ./COPYING file in the source tree root for more information.
*
Expand Down
4 changes: 2 additions & 2 deletions kdtree++/accessor.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** \file
* Defines the interface for the Accessor class.
*
* \author Martin F. Krafft <madduck@madduck.net>
* \author Martin F. Krafft <libkdtree@pobox.madduck.net>
*/

#ifndef INCLUDE_KDTREE_ACCESSOR_HPP
Expand Down Expand Up @@ -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 <madduck@madduck.net>
* libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
* and distributed under the terms of the Artistic License 2.0.
* See the ./COPYING file in the source tree root for more information.
*
Expand Down
4 changes: 2 additions & 2 deletions kdtree++/allocator.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** \file
* Defines the allocator interface as used by the KDTree class.
*
* \author Martin F. Krafft <madduck@madduck.net>
* \author Martin F. Krafft <libkdtree@pobox.madduck.net>
*/

#ifndef INCLUDE_KDTREE_ALLOCATOR_HPP
Expand Down Expand Up @@ -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 <madduck@madduck.net>
* libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
* and distributed under the terms of the Artistic License 2.0.
* See the ./COPYING file in the source tree root for more information.
*
Expand Down
4 changes: 2 additions & 2 deletions kdtree++/iterator.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** \file
* Defines interfaces for iterators as used by the KDTree class.
*
* \author Martin F. Krafft <madduck@madduck.net>
* \author Martin F. Krafft <libkdtree@pobox.madduck.net>
*/

#ifndef INCLUDE_KDTREE_ITERATOR_HPP
Expand Down Expand Up @@ -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 <madduck@madduck.net>
* libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
* and distributed under the terms of the Artistic License 2.0.
* See the ./COPYING file in the source tree root for more information.
*
Expand Down
4 changes: 2 additions & 2 deletions kdtree++/kdtree.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** \file
* Defines the interface for the KDTree class.
*
* \author Martin F. Krafft <madduck@madduck.net>
* \author Martin F. Krafft <libkdtree@pobox.madduck.net>
*/

#ifndef INCLUDE_KDTREE_KDTREE_HPP
Expand Down Expand Up @@ -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 <madduck@madduck.net>
* libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
* 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 <[email protected]>.
Expand Down
4 changes: 2 additions & 2 deletions kdtree++/node.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** \file
* Defines interfaces for nodes as used by the KDTree class.
*
* \author Martin F. Krafft <madduck@madduck.net>
* \author Martin F. Krafft <libkdtree@pobox.madduck.net>
*/

#ifndef INCLUDE_KDTREE_NODE_HPP
Expand Down Expand Up @@ -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 <madduck@madduck.net>
* libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
* and distributed under the terms of the Artistic License 2.0.
* See the ./COPYING file in the source tree root for more information.
*
Expand Down
4 changes: 2 additions & 2 deletions kdtree++/region.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** \file
* Defines the interface of the _Region class.
*
* \author Martin F. Krafft <madduck@madduck.net>
* \author Martin F. Krafft <libkdtree@pobox.madduck.net>
*/

#ifndef INCLUDE_KDTREE_REGION_HPP
Expand Down Expand Up @@ -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 <madduck@madduck.net>
* libkdtree++ is (c) 2004-2007 Martin F. Krafft <libkdtree@pobox.madduck.net>
* and distributed under the terms of the Artistic License 2.0.
* See the ./COPYING file in the source tree root for more information.
*
Expand Down

0 comments on commit a14fce3

Please sign in to comment.