aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2012-12-04 22:33:40 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2012-12-04 22:33:40 +0100
commit29d54a4b19caf94b2efd2bd537e8c24f70e9520b (patch)
tree839be702d25b3ed7d7576f4f2d8d1926aae94387
parentbbfdcc13410332fa33b9c9a5492550560f770024 (diff)
downloadsciteco-29d54a4b19caf94b2efd2bd537e8c24f70e9520b.tar.gz
added copyright notice to every source file
-rw-r--r--src/cmdline.cpp17
-rw-r--r--src/expressions.cpp17
-rw-r--r--src/expressions.h17
-rw-r--r--src/goto.cpp17
-rw-r--r--src/goto.h17
-rw-r--r--src/interface-gtk.cpp17
-rw-r--r--src/interface-gtk.h17
-rw-r--r--src/interface-ncurses.cpp17
-rw-r--r--src/interface-ncurses.h17
-rw-r--r--src/interface.h17
-rw-r--r--src/main.cpp17
-rw-r--r--src/parser.cpp17
-rw-r--r--src/parser.h17
-rw-r--r--src/qregisters.cpp17
-rw-r--r--src/qregisters.h17
-rw-r--r--src/rbtree.cpp17
-rw-r--r--src/rbtree.h17
-rw-r--r--src/ring.cpp17
-rw-r--r--src/ring.h17
-rw-r--r--src/sciteco.h17
-rw-r--r--src/search.cpp17
-rw-r--r--src/search.h17
-rw-r--r--src/symbols.cpp17
-rw-r--r--src/symbols.h17
-rw-r--r--src/undo.cpp17
-rw-r--r--src/undo.h17
26 files changed, 442 insertions, 0 deletions
diff --git a/src/cmdline.cpp b/src/cmdline.cpp
index 8d7a3a1..3bf1ab2 100644
--- a/src/cmdline.cpp
+++ b/src/cmdline.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/expressions.cpp b/src/expressions.cpp
index 6d7a2e5..b1ef870 100644
--- a/src/expressions.cpp
+++ b/src/expressions.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/expressions.h b/src/expressions.h
index a441e90..17e50a9 100644
--- a/src/expressions.h
+++ b/src/expressions.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __EXPRESSIONS_H
#define __EXPRESSIONS_H
diff --git a/src/goto.cpp b/src/goto.cpp
index 05714a8..f8fb3f6 100644
--- a/src/goto.cpp
+++ b/src/goto.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/goto.h b/src/goto.h
index 6275d34..37e96f8 100644
--- a/src/goto.h
+++ b/src/goto.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __GOTO_H
#define __GOTO_H
diff --git a/src/interface-gtk.cpp b/src/interface-gtk.cpp
index cac776f..68a45f0 100644
--- a/src/interface-gtk.cpp
+++ b/src/interface-gtk.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/interface-gtk.h b/src/interface-gtk.h
index b46f821..fb17d67 100644
--- a/src/interface-gtk.h
+++ b/src/interface-gtk.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __INTERFACE_GTK_H
#define __INTERFACE_GTK_H
diff --git a/src/interface-ncurses.cpp b/src/interface-ncurses.cpp
index 7166a52..97c050d 100644
--- a/src/interface-ncurses.cpp
+++ b/src/interface-ncurses.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/interface-ncurses.h b/src/interface-ncurses.h
index 97269a4..7cdff92 100644
--- a/src/interface-ncurses.h
+++ b/src/interface-ncurses.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __INTERFACE_NCURSES_H
#define __INTERFACE_NCURSES_H
diff --git a/src/interface.h b/src/interface.h
index 35ee1f7..28be9fe 100644
--- a/src/interface.h
+++ b/src/interface.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __INTERFACE_H
#define __INTERFACE_H
diff --git a/src/main.cpp b/src/main.cpp
index c2af75a..c93e542 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/parser.cpp b/src/parser.cpp
index 870695d..1843b1d 100644
--- a/src/parser.cpp
+++ b/src/parser.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/parser.h b/src/parser.h
index 4ae9db6..af457c7 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __PARSER_H
#define __PARSER_H
diff --git a/src/qregisters.cpp b/src/qregisters.cpp
index dfe20a0..25b5261 100644
--- a/src/qregisters.cpp
+++ b/src/qregisters.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/qregisters.h b/src/qregisters.h
index e810b7f..60b5198 100644
--- a/src/qregisters.h
+++ b/src/qregisters.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __QREGISTERS_H
#define __QREGISTERS_H
diff --git a/src/rbtree.cpp b/src/rbtree.cpp
index f8f5c36..d868e17 100644
--- a/src/rbtree.cpp
+++ b/src/rbtree.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/rbtree.h b/src/rbtree.h
index d5f2a6e..4d889bb 100644
--- a/src/rbtree.h
+++ b/src/rbtree.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __RBTREE_H
#define __RBTREE_H
diff --git a/src/ring.cpp b/src/ring.cpp
index 1b0dbc4..624296e 100644
--- a/src/ring.cpp
+++ b/src/ring.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/ring.h b/src/ring.h
index da4f322..72393bd 100644
--- a/src/ring.h
+++ b/src/ring.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __RING_H
#define __RING_H
diff --git a/src/sciteco.h b/src/sciteco.h
index bb98415..92014e2 100644
--- a/src/sciteco.h
+++ b/src/sciteco.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __SCITECO_H
#define __SCITECO_H
diff --git a/src/search.cpp b/src/search.cpp
index 3f0d80d..ddd8d5d 100644
--- a/src/search.cpp
+++ b/src/search.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/search.h b/src/search.h
index 2bddedd..184d9ef 100644
--- a/src/search.h
+++ b/src/search.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __SEARCH_H
#define __SEARCH_H
diff --git a/src/symbols.cpp b/src/symbols.cpp
index dd85faf..8772fc9 100644
--- a/src/symbols.cpp
+++ b/src/symbols.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/symbols.h b/src/symbols.h
index 1c48ddf..dd8bcc4 100644
--- a/src/symbols.h
+++ b/src/symbols.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __SYMBOLS_H
#define __SYMBOLS_H
diff --git a/src/undo.cpp b/src/undo.cpp
index 4ed825c..c801401 100644
--- a/src/undo.cpp
+++ b/src/undo.cpp
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/undo.h b/src/undo.h
index 43692e9..35c47b4 100644
--- a/src/undo.h
+++ b/src/undo.h
@@ -1,3 +1,20 @@
+/*
+ * Copyright (C) 2012 Robin Haberkorn
+ *
+ * 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 <http://www.gnu.org/licenses/>.
+ */
+
#ifndef __UNDO_H
#define __UNDO_H