From 20f81a7630c82d9dae8b9017426d3c11673c2203 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 21 Jun 2011 20:26:32 +1000 Subject: [PATCH] Correct package name in copyright headers Package is no longer waif, after its seperation from the waif library/application. Hopefully there aren't any more dependencies... --- annotations.hpp | 4 ++-- debug.cpp | 4 ++-- debug.hpp | 4 ++-- except.cpp | 4 ++-- except.hpp | 4 ++-- io.hpp | 4 ++-- json.cpp.rl | 20 ++++++++++++++++++++ json.hpp | 8 ++++---- maths.cpp | 8 ++++---- maths.hpp | 4 ++-- matrix.cpp | 19 +++++++++++++++++++ matrix.hpp | 8 ++++---- nocopy.hpp | 8 ++++---- range.hpp | 8 ++++---- region.cpp | 20 ++++++++++++++++++++ region.hpp | 8 ++++---- stream.cpp | 19 +++++++++++++++++++ stream.hpp | 8 ++++---- vector.hpp | 8 ++++---- version.cpp.rl | 20 ++++++++++++++++++++ version.hpp | 8 ++++---- 21 files changed, 148 insertions(+), 50 deletions(-) diff --git a/annotations.hpp b/annotations.hpp index 5f80b5e3..e94b3466 100644 --- a/annotations.hpp +++ b/annotations.hpp @@ -1,5 +1,5 @@ /* - * This file is part of waif. + * This file is part of libgim. * * Waif is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software @@ -12,7 +12,7 @@ * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/debug.cpp b/debug.cpp index fc4ea079..57d7ca3b 100644 --- a/debug.cpp +++ b/debug.cpp @@ -1,5 +1,5 @@ /* - * This file is part of waif. + * This file is part of libgim. * * Waif is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software @@ -12,7 +12,7 @@ * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/debug.hpp b/debug.hpp index ea38db49..49aa96fc 100644 --- a/debug.hpp +++ b/debug.hpp @@ -1,5 +1,5 @@ /* - * This file is part of waif. + * This file is part of libgim. * * Waif is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software @@ -12,7 +12,7 @@ * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/except.cpp b/except.cpp index fa356a84..0943c03e 100644 --- a/except.cpp +++ b/except.cpp @@ -1,5 +1,5 @@ /* - * This file is part of waif. + * This file is part of libgim. * * Waif is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software @@ -12,7 +12,7 @@ * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/except.hpp b/except.hpp index a3c9eba3..b179baf2 100644 --- a/except.hpp +++ b/except.hpp @@ -1,5 +1,5 @@ /* - * This file is part of waif. + * This file is part of libgim. * * Waif is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software @@ -12,7 +12,7 @@ * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/io.hpp b/io.hpp index 72d716e0..84e0bfee 100644 --- a/io.hpp +++ b/io.hpp @@ -1,5 +1,5 @@ /* - * This file is part of waif. + * This file is part of libgim. * * Waif is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software @@ -12,7 +12,7 @@ * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/json.cpp.rl b/json.cpp.rl index 6bb045de..9e85fd54 100644 --- a/json.cpp.rl +++ b/json.cpp.rl @@ -1,3 +1,23 @@ +/* + * This file is part of libgim. + * + * libgim is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with libgim. If not, see . + * + * Copyright 2010 Danny Robson + */ + + #include "json.hpp" #include "maths.hpp" #include "io.hpp" diff --git a/json.hpp b/json.hpp index f27487ca..bd265f72 100644 --- a/json.hpp +++ b/json.hpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/maths.cpp b/maths.cpp index be5f08b0..a65d911e 100644 --- a/maths.cpp +++ b/maths.cpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/maths.hpp b/maths.hpp index b9e9686a..9c8db6de 100644 --- a/maths.hpp +++ b/maths.hpp @@ -1,5 +1,5 @@ /* - * This file is part of waif. + * This file is part of libgim. * * Waif is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software @@ -12,7 +12,7 @@ * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/matrix.cpp b/matrix.cpp index 964d1ee2..61b54950 100644 --- a/matrix.cpp +++ b/matrix.cpp @@ -1,3 +1,22 @@ +/* + * This file is part of libgim. + * + * libgim is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with libgim. If not, see . + * + * Copyright 2010 Danny Robson + */ + #include "matrix.hpp" #include "debug.hpp" diff --git a/matrix.hpp b/matrix.hpp index 18f9b071..fa0f8a16 100644 --- a/matrix.hpp +++ b/matrix.hpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/nocopy.hpp b/nocopy.hpp index f8327427..c90cb0a7 100644 --- a/nocopy.hpp +++ b/nocopy.hpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/range.hpp b/range.hpp index 4e180986..262d024e 100644 --- a/range.hpp +++ b/range.hpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/region.cpp b/region.cpp index aa241073..3b91cd50 100644 --- a/region.cpp +++ b/region.cpp @@ -1,3 +1,23 @@ +/* + * This file is part of libgim. + * + * libgim is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with libgim. If not, see . + * + * Copyright 2010 Danny Robson + */ + + #include "region.hpp" #include "debug.hpp" diff --git a/region.hpp b/region.hpp index 104bb766..335f6a11 100644 --- a/region.hpp +++ b/region.hpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */ diff --git a/stream.cpp b/stream.cpp index 5ab71bd6..4832c3a8 100644 --- a/stream.cpp +++ b/stream.cpp @@ -1,3 +1,22 @@ +/* + * This file is part of libgim. + * + * libgim is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with libgim. If not, see . + * + * Copyright 2010 Danny Robson + */ + #include "stream.hpp" std::ostream& diff --git a/stream.hpp b/stream.hpp index a3784e55..730e5ed1 100644 --- a/stream.hpp +++ b/stream.hpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2011 Danny Robson */ diff --git a/vector.hpp b/vector.hpp index ea14b126..48d1a253 100644 --- a/vector.hpp +++ b/vector.hpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2011 Danny Robson */ diff --git a/version.cpp.rl b/version.cpp.rl index e413dd35..4504349b 100644 --- a/version.cpp.rl +++ b/version.cpp.rl @@ -1,3 +1,23 @@ +/* + * This file is part of libgim. + * + * libgim is free software: you can redistribute it and/or modify it under the + * terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with libgim. If not, see . + * + * Copyright 2010 Danny Robson + */ + + #include "version.hpp" #include diff --git a/version.hpp b/version.hpp index b9b965c0..3f57a3bb 100644 --- a/version.hpp +++ b/version.hpp @@ -1,18 +1,18 @@ /* - * This file is part of waif. + * This file is part of libgim. * - * Waif is free software: you can redistribute it and/or modify it under the + * libgim is free software: you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation, either version 3 of the License, or (at your option) any later * version. * - * Waif is distributed in the hope that it will be useful, but WITHOUT ANY + * libgim is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more * details. * * You should have received a copy of the GNU General Public License - * along with waif. If not, see . + * along with libgim. If not, see . * * Copyright 2010 Danny Robson */