summaryrefslogtreecommitdiffhomepage
path: root/options
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-09-18 11:59:14 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-09-18 11:59:14 +0200
commit548c9549cd3e408df63426090088b08d72c2658e (patch)
tree5b110c7bd2f6543e45e6d50207538ceed1dae39a /options
parentcec6c2ba81f7169994c1a952e68a2a85841d63c1 (diff)
add missing copyright terms
Due to fucking AT&T vs BSD suit copyright defaults to all rights reserved. Fuck Berne Convention as well.
Diffstat (limited to 'options')
-rw-r--r--options/bundle.cpp8
-rw-r--r--options/bundle.hpp8
-rw-r--r--options/connector.cpp8
-rw-r--r--options/connector.hpp8
-rw-r--r--options/group.cpp8
-rw-r--r--options/slider.cpp8
-rw-r--r--options/tie.hpp8
-rw-r--r--options/value.cpp9
-rw-r--r--options/value.hpp8
9 files changed, 72 insertions, 1 deletions
diff --git a/options/bundle.cpp b/options/bundle.cpp
index 482e46d1..96291476 100644
--- a/options/bundle.cpp
+++ b/options/bundle.cpp
@@ -1,3 +1,11 @@
+/* Copyright (c) 2013-2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+
#include "bundle.hpp"
#include "value.hpp"
diff --git a/options/bundle.hpp b/options/bundle.hpp
index 8af25433..2d7fa7f4 100644
--- a/options/bundle.hpp
+++ b/options/bundle.hpp
@@ -1,3 +1,11 @@
+/* Copyright (c) 2013-2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+
#pragma once
#include "group.hpp"
diff --git a/options/connector.cpp b/options/connector.cpp
index 2f4bb0af..dc4d53f5 100644
--- a/options/connector.cpp
+++ b/options/connector.cpp
@@ -1,3 +1,11 @@
+/* Copyright (c) 2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+
#include "compat/util.hpp"
#include "connector.hpp"
#include "value.hpp"
diff --git a/options/connector.hpp b/options/connector.hpp
index 6aba79e2..1e1230a3 100644
--- a/options/connector.hpp
+++ b/options/connector.hpp
@@ -1,3 +1,11 @@
+/* Copyright (c) 2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+
#pragma once
#include <map>
diff --git a/options/group.cpp b/options/group.cpp
index a17f185c..9a4bd912 100644
--- a/options/group.cpp
+++ b/options/group.cpp
@@ -1,3 +1,11 @@
+/* Copyright (c) 2013-2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+
#include "group.hpp"
#include "defs.hpp"
#include <QStandardPaths>
diff --git a/options/slider.cpp b/options/slider.cpp
index ff8da1dc..9cbe373c 100644
--- a/options/slider.cpp
+++ b/options/slider.cpp
@@ -1,3 +1,11 @@
+/* Copyright (c) 2015-2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+
#include "slider.hpp"
#include <cmath>
diff --git a/options/tie.hpp b/options/tie.hpp
index c1eb1b92..a47dbd3d 100644
--- a/options/tie.hpp
+++ b/options/tie.hpp
@@ -1,3 +1,11 @@
+/* Copyright (c) 2015-2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+
#pragma once
#include "value.hpp"
diff --git a/options/value.cpp b/options/value.cpp
index 77f8d501..f5e92600 100644
--- a/options/value.cpp
+++ b/options/value.cpp
@@ -1,5 +1,12 @@
-#include "value.hpp"
+/* Copyright (c) 2015-2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+#include "value.hpp"
namespace options {
diff --git a/options/value.hpp b/options/value.hpp
index 2d10a2c8..3c45bf15 100644
--- a/options/value.hpp
+++ b/options/value.hpp
@@ -1,3 +1,11 @@
+/* Copyright (c) 2015-2016, Stanislaw Halik <sthalik@misaki.pl>
+
+ * Permission to use, copy, modify, and/or distribute this
+ * software for any purpose with or without fee is hereby granted,
+ * provided that the above copyright notice and this permission
+ * notice appear in all copies.
+ */
+
#pragma once
#include "connector.hpp"