[gnome-chess] Add license headers
- From: Robert Ancell <rancell src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-chess] Add license headers
- Date: Sun, 7 Jul 2013 21:18:57 +0000 (UTC)
commit 156fd116044448722d96944f6251eda91408df1c
Author: Robert Ancell <robert ancell canonical com>
Date: Mon Jul 8 09:14:29 2013 +1200
Add license headers
src/3ds.vala | 10 ++++++++++
src/ai-profile.vala | 10 ++++++++++
src/chess-bitboard.vala | 10 ++++++++++
src/chess-clock.vala | 10 ++++++++++
src/chess-engine-cecp.vala | 10 ++++++++++
src/chess-engine-uci.vala | 10 ++++++++++
src/chess-engine.vala | 10 ++++++++++
src/chess-game.vala | 10 ++++++++++
src/chess-pgn.vala | 10 ++++++++++
src/chess-scene.vala | 10 ++++++++++
src/chess-view-2d.vala | 10 ++++++++++
src/chess-view-3d.vala | 10 ++++++++++
src/chess-view.vala | 10 ++++++++++
src/gnome-chess.vala | 10 ++++++++++
src/history.vala | 10 ++++++++++
src/test-chess-game.vala | 10 ++++++++++
src/test-chess-pgn.vala | 10 ++++++++++
17 files changed, 170 insertions(+), 0 deletions(-)
---
diff --git a/src/3ds.vala b/src/3ds.vala
index 83e9769..6739a76 100644
--- a/src/3ds.vala
+++ b/src/3ds.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
using GL;
public class TDSModel
diff --git a/src/ai-profile.vala b/src/ai-profile.vala
index a06b419..f106430 100644
--- a/src/ai-profile.vala
+++ b/src/ai-profile.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class AIProfile
{
public string name;
diff --git a/src/chess-bitboard.vala b/src/chess-bitboard.vala
index a74740f..06b86bc 100644
--- a/src/chess-bitboard.vala
+++ b/src/chess-bitboard.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class BitBoard
{
/* Bitboard for each location */
diff --git a/src/chess-clock.vala b/src/chess-clock.vala
index ba3c76f..c35bb46 100644
--- a/src/chess-clock.vala
+++ b/src/chess-clock.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class ChessClock : Object
{
private uint _white_duration;
diff --git a/src/chess-engine-cecp.vala b/src/chess-engine-cecp.vala
index ddb8f78..be3e868 100644
--- a/src/chess-engine-cecp.vala
+++ b/src/chess-engine-cecp.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class ChessEngineCECP : ChessEngine
{
private char[] buffer;
diff --git a/src/chess-engine-uci.vala b/src/chess-engine-uci.vala
index 6a8dc4a..12fdd15 100644
--- a/src/chess-engine-uci.vala
+++ b/src/chess-engine-uci.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class ChessEngineUCI : ChessEngine
{
private char[] buffer;
diff --git a/src/chess-engine.vala b/src/chess-engine.vala
index 1a63e83..f708c8e 100644
--- a/src/chess-engine.vala
+++ b/src/chess-engine.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public abstract class ChessEngine : Object
{
private string binary;
diff --git a/src/chess-game.vala b/src/chess-game.vala
index 56a7eef..8777751 100644
--- a/src/chess-game.vala
+++ b/src/chess-game.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public enum Color
{
WHITE,
diff --git a/src/chess-pgn.vala b/src/chess-pgn.vala
index 4599bfb..020f1e9 100644
--- a/src/chess-pgn.vala
+++ b/src/chess-pgn.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
private int str_index (string name)
{
if (name == "Event")
diff --git a/src/chess-scene.vala b/src/chess-scene.vala
index 035956a..1a446a6 100644
--- a/src/chess-scene.vala
+++ b/src/chess-scene.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class ChessModel
{
public ChessPiece piece;
diff --git a/src/chess-view-2d.vala b/src/chess-view-2d.vala
index f6ea88d..6bb7d7d 100644
--- a/src/chess-view-2d.vala
+++ b/src/chess-view-2d.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
private class ChessView2D : ChessView
{
private int border = 6;
diff --git a/src/chess-view-3d.vala b/src/chess-view-3d.vala
index 7fbcc29..0961639 100644
--- a/src/chess-view-3d.vala
+++ b/src/chess-view-3d.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
using GL;
using GLU;
using GLX;
diff --git a/src/chess-view.vala b/src/chess-view.vala
index a586194..98c4ded 100644
--- a/src/chess-view.vala
+++ b/src/chess-view.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public abstract class ChessView : Gtk.DrawingArea
{
private ChessScene _scene;
diff --git a/src/gnome-chess.vala b/src/gnome-chess.vala
index 8e0612b..c3d3087 100644
--- a/src/gnome-chess.vala
+++ b/src/gnome-chess.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
/* Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=647122 */
extern void gtk_file_filter_set_name (Gtk.FileFilter filter, string name);
diff --git a/src/history.vala b/src/history.vala
index 4e8d78b..d04a347 100644
--- a/src/history.vala
+++ b/src/history.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
public class History
{
private File history_dir;
diff --git a/src/test-chess-game.vala b/src/test-chess-game.vala
index 735c3b1..bd67e13 100644
--- a/src/test-chess-game.vala
+++ b/src/test-chess-game.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
class GlChess
{
static int test_count = 0;
diff --git a/src/test-chess-pgn.vala b/src/test-chess-pgn.vala
index 741d99f..71abee5 100644
--- a/src/test-chess-pgn.vala
+++ b/src/test-chess-pgn.vala
@@ -1,3 +1,13 @@
+/*
+ * Copyright (C) 2010-2013 Robert Ancell
+ *
+ * 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 2 of the License, or (at your option) any later
+ * version. See http://www.gnu.org/copyleft/gpl.html the full text of the
+ * license.
+ */
+
class GlChess
{
static int test_count = 0;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]