From c43e5656d70afd9d3ab378c2a4abe920b367c5f7 Mon Sep 17 00:00:00 2001 From: Peter Osterlund Date: Sun, 25 Dec 2016 23:06:14 +0100 Subject: [PATCH] DroidFish: Added missing copyright headers. --- .../src/org/petero/droidfish/DroidFishApp.java | 18 ++++++++++++++++++ .../org/petero/droidfish/MyRelativeLayout.java | 18 ++++++++++++++++++ .../petero/droidfish/SVGPictureDrawable.java | 18 ++++++++++++++++++ .../src/org/petero/droidfish/book/EcoBook.java | 18 ++++++++++++++++++ .../org/petero/droidfish/engine/LocalPipe.java | 18 ++++++++++++++++++ .../droidfish/engine/OpenExchangeEngine.java | 18 ++++++++++++++++++ .../petero/droidfish/engine/UCIOptions.java | 18 ++++++++++++++++++ .../droidfish/gamelogic/TimeControlData.java | 18 ++++++++++++++++++ .../org/petero/droidfish/tb/ProbeResult.java | 18 ++++++++++++++++++ 9 files changed, 162 insertions(+) diff --git a/DroidFish/src/org/petero/droidfish/DroidFishApp.java b/DroidFish/src/org/petero/droidfish/DroidFishApp.java index 3c31c1b..a15be9d 100644 --- a/DroidFish/src/org/petero/droidfish/DroidFishApp.java +++ b/DroidFish/src/org/petero/droidfish/DroidFishApp.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish; import android.app.Application; diff --git a/DroidFish/src/org/petero/droidfish/MyRelativeLayout.java b/DroidFish/src/org/petero/droidfish/MyRelativeLayout.java index 93bd2f6..7cf4082 100644 --- a/DroidFish/src/org/petero/droidfish/MyRelativeLayout.java +++ b/DroidFish/src/org/petero/droidfish/MyRelativeLayout.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2015-2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish; import android.content.Context; diff --git a/DroidFish/src/org/petero/droidfish/SVGPictureDrawable.java b/DroidFish/src/org/petero/droidfish/SVGPictureDrawable.java index 59faa65..0e371a2 100644 --- a/DroidFish/src/org/petero/droidfish/SVGPictureDrawable.java +++ b/DroidFish/src/org/petero/droidfish/SVGPictureDrawable.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2012-2013,2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish; import com.larvalabs.svgandroid.SVG; diff --git a/DroidFish/src/org/petero/droidfish/book/EcoBook.java b/DroidFish/src/org/petero/droidfish/book/EcoBook.java index 37d238c..3898b23 100644 --- a/DroidFish/src/org/petero/droidfish/book/EcoBook.java +++ b/DroidFish/src/org/petero/droidfish/book/EcoBook.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish.book; import java.util.ArrayList; diff --git a/DroidFish/src/org/petero/droidfish/engine/LocalPipe.java b/DroidFish/src/org/petero/droidfish/engine/LocalPipe.java index 7c98680..1402774 100644 --- a/DroidFish/src/org/petero/droidfish/engine/LocalPipe.java +++ b/DroidFish/src/org/petero/droidfish/engine/LocalPipe.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2012-2013,2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish.engine; import java.util.LinkedList; diff --git a/DroidFish/src/org/petero/droidfish/engine/OpenExchangeEngine.java b/DroidFish/src/org/petero/droidfish/engine/OpenExchangeEngine.java index 48c104b..2a87a3a 100644 --- a/DroidFish/src/org/petero/droidfish/engine/OpenExchangeEngine.java +++ b/DroidFish/src/org/petero/droidfish/engine/OpenExchangeEngine.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2014,2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish.engine; import java.io.File; diff --git a/DroidFish/src/org/petero/droidfish/engine/UCIOptions.java b/DroidFish/src/org/petero/droidfish/engine/UCIOptions.java index f2b91a2..2bc2404 100644 --- a/DroidFish/src/org/petero/droidfish/engine/UCIOptions.java +++ b/DroidFish/src/org/petero/droidfish/engine/UCIOptions.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2014-2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish.engine; import java.io.Serializable; diff --git a/DroidFish/src/org/petero/droidfish/gamelogic/TimeControlData.java b/DroidFish/src/org/petero/droidfish/gamelogic/TimeControlData.java index 1b0288f..a77cef8 100644 --- a/DroidFish/src/org/petero/droidfish/gamelogic/TimeControlData.java +++ b/DroidFish/src/org/petero/droidfish/gamelogic/TimeControlData.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2013,2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish.gamelogic; import java.io.DataInputStream; diff --git a/DroidFish/src/org/petero/droidfish/tb/ProbeResult.java b/DroidFish/src/org/petero/droidfish/tb/ProbeResult.java index 675ef4f..0afd8ff 100644 --- a/DroidFish/src/org/petero/droidfish/tb/ProbeResult.java +++ b/DroidFish/src/org/petero/droidfish/tb/ProbeResult.java @@ -1,3 +1,21 @@ +/* + DroidFish - An Android chess program. + Copyright (C) 2014,2016 Peter Österlund, peterosterlund2@gmail.com + + This program 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. + + This program 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 this program. If not, see . +*/ + package org.petero.droidfish.tb; /** Tablebase probe result. */