From 7fbc33dae1dc1f7886ad11074fc109d10d8867e0 Mon Sep 17 00:00:00 2001 From: rubidium Date: Fri, 21 Aug 2009 20:21:05 +0000 Subject: (svn r17248) -Fix: add GPL license notice where appropriate --- src/script/fake_squirrel_types.hpp | 7 +++++++ src/script/script_info.cpp | 7 +++++++ src/script/script_info.hpp | 7 +++++++ src/script/script_scanner.cpp | 7 +++++++ src/script/script_scanner.hpp | 7 +++++++ src/script/squirrel.cpp | 7 +++++++ src/script/squirrel.hpp | 7 +++++++ src/script/squirrel_class.hpp | 7 +++++++ src/script/squirrel_helper.hpp | 7 +++++++ src/script/squirrel_helper_type.hpp | 7 +++++++ src/script/squirrel_std.cpp | 7 +++++++ src/script/squirrel_std.hpp | 7 +++++++ 12 files changed, 84 insertions(+) (limited to 'src/script') diff --git a/src/script/fake_squirrel_types.hpp b/src/script/fake_squirrel_types.hpp index ef25008f1..7ab0212d4 100644 --- a/src/script/fake_squirrel_types.hpp +++ b/src/script/fake_squirrel_types.hpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file fake_squirrel_types.hpp Provides definitions for some squirrel types to prevent including squirrel.h in header files.*/ #ifndef FAKE_SQUIRREL_TYPES_HPP diff --git a/src/script/script_info.cpp b/src/script/script_info.cpp index eaf757553..4f2f548a5 100644 --- a/src/script/script_info.cpp +++ b/src/script/script_info.cpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file script_info.cpp Implementation of ScriptFileInfo. */ #include "../stdafx.h" diff --git a/src/script/script_info.hpp b/src/script/script_info.hpp index 945e86407..931a4caf8 100644 --- a/src/script/script_info.hpp +++ b/src/script/script_info.hpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file script_info.hpp ScriptInfo keeps track of all information of a script, like Author, Description, ... */ #ifndef SCRIPT_INFO diff --git a/src/script/script_scanner.cpp b/src/script/script_scanner.cpp index 7b993889e..8a6491461 100644 --- a/src/script/script_scanner.cpp +++ b/src/script/script_scanner.cpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file script_scanner.cpp Allows scanning for scripts. */ #include "../stdafx.h" diff --git a/src/script/script_scanner.hpp b/src/script/script_scanner.hpp index 922e37202..44af25e49 100644 --- a/src/script/script_scanner.hpp +++ b/src/script/script_scanner.hpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file script_scanner.hpp Declarations of the class for the script scanner. */ #ifndef SCRIPT_SCANNER_HPP diff --git a/src/script/squirrel.cpp b/src/script/squirrel.cpp index 1dd407589..e42d1c833 100644 --- a/src/script/squirrel.cpp +++ b/src/script/squirrel.cpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file squirrel.cpp the implementation of the Squirrel class. It handles all Squirrel-stuff and gives a nice API back to work with. */ #include diff --git a/src/script/squirrel.hpp b/src/script/squirrel.hpp index 97dd7988d..699a667d6 100644 --- a/src/script/squirrel.hpp +++ b/src/script/squirrel.hpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file squirrel.hpp defines the Squirrel class */ #ifndef SQUIRREL_HPP diff --git a/src/script/squirrel_class.hpp b/src/script/squirrel_class.hpp index 4b3506727..9faf4a68e 100644 --- a/src/script/squirrel_class.hpp +++ b/src/script/squirrel_class.hpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file squirrel_class.hpp Defines templates for converting C++ classes to Squirrel classes */ #ifndef SQUIRREL_CLASS_HPP diff --git a/src/script/squirrel_helper.hpp b/src/script/squirrel_helper.hpp index 2310b70cb..225f17dd1 100644 --- a/src/script/squirrel_helper.hpp +++ b/src/script/squirrel_helper.hpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file squirrel_helper.hpp declarations and parts of the implementation of the class for convert code */ #ifndef SQUIRREL_HELPER_HPP diff --git a/src/script/squirrel_helper_type.hpp b/src/script/squirrel_helper_type.hpp index 3b340ad8e..adf88b0e8 100644 --- a/src/script/squirrel_helper_type.hpp +++ b/src/script/squirrel_helper_type.hpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file squirrel_helper_type.hpp Helper structs for converting Squirrel data structures to C++. */ #ifndef SQUIRREL_HELPER_TYPE_HPP diff --git a/src/script/squirrel_std.cpp b/src/script/squirrel_std.cpp index 652ddf546..94e84245e 100644 --- a/src/script/squirrel_std.cpp +++ b/src/script/squirrel_std.cpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file squirrel_std.cpp Implements the Squirrel Standard Function class */ #include diff --git a/src/script/squirrel_std.hpp b/src/script/squirrel_std.hpp index 93d82995a..1751f6a67 100644 --- a/src/script/squirrel_std.hpp +++ b/src/script/squirrel_std.hpp @@ -1,5 +1,12 @@ /* $Id$ */ +/* + * This file is part of OpenTTD. + * OpenTTD 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, version 2. + * OpenTTD 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 OpenTTD. If not, see . + */ + /** @file squirrel_std.hpp defines the Squirrel Standard Function class */ #ifndef SQUIRREL_STD_HPP -- cgit v1.2.3-54-g00ecf