From 548c9549cd3e408df63426090088b08d72c2658e Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 18 Sep 2016 11:59:14 +0200 Subject: add missing copyright terms Due to fucking AT&T vs BSD suit copyright defaults to all rights reserved. Fuck Berne Convention as well. --- migration/20160906_00-mappings.cpp | 8 ++++++++ migration/20160906_01-axis-signs.cpp | 8 ++++++++ migration/20160906_02-modules.cpp | 8 ++++++++ migration/20160917_00-accela.cpp | 8 ++++++++ migration/migration.cpp | 8 ++++++++ migration/migration.hpp | 8 ++++++++ options/bundle.cpp | 8 ++++++++ options/bundle.hpp | 8 ++++++++ options/connector.cpp | 8 ++++++++ options/connector.hpp | 8 ++++++++ options/group.cpp | 8 ++++++++ options/slider.cpp | 8 ++++++++ options/tie.hpp | 8 ++++++++ options/value.cpp | 9 ++++++++- options/value.hpp | 8 ++++++++ proto-vjoystick/vjoystick.cpp | 7 +++++++ x-plane-plugin/plugin.c | 8 ++++++++ 17 files changed, 135 insertions(+), 1 deletion(-) diff --git a/migration/20160906_00-mappings.cpp b/migration/20160906_00-mappings.cpp index 7bc139cc..65759dec 100644 --- a/migration/20160906_00-mappings.cpp +++ b/migration/20160906_00-mappings.cpp @@ -1,3 +1,11 @@ +/* Copyright (c) 2016, Stanislaw Halik + + * 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 "migration.hpp" #include "logic/mappings.hpp" #include "logic/main-settings.hpp" diff --git a/migration/20160906_01-axis-signs.cpp b/migration/20160906_01-axis-signs.cpp index 8e905f5c..0934990d 100644 --- a/migration/20160906_01-axis-signs.cpp +++ b/migration/20160906_01-axis-signs.cpp @@ -1,3 +1,11 @@ +/* Copyright (c) 2016, Stanislaw Halik + + * 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 "migration.hpp" #include "options/options.hpp" #include "logic/main-settings.hpp" diff --git a/migration/20160906_02-modules.cpp b/migration/20160906_02-modules.cpp index ea635f67..0f0951f1 100644 --- a/migration/20160906_02-modules.cpp +++ b/migration/20160906_02-modules.cpp @@ -1,3 +1,11 @@ +/* Copyright (c) 2016, Stanislaw Halik + + * 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 "migration.hpp" #include "options/options.hpp" diff --git a/migration/20160917_00-accela.cpp b/migration/20160917_00-accela.cpp index 80f6a223..60104c24 100644 --- a/migration/20160917_00-accela.cpp +++ b/migration/20160917_00-accela.cpp @@ -1,3 +1,11 @@ +/* Copyright (c) 2016, Stanislaw Halik + + * 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 "migration.hpp" #include "options/options.hpp" #include "compat/util.hpp" diff --git a/migration/migration.cpp b/migration/migration.cpp index 902490f5..bb8386fc 100644 --- a/migration/migration.cpp +++ b/migration/migration.cpp @@ -1,3 +1,11 @@ +/* Copyright (c) 2016, Stanislaw Halik + + * 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 #include "migration.hpp" diff --git a/migration/migration.hpp b/migration/migration.hpp index 02a42803..e7b42152 100644 --- a/migration/migration.hpp +++ b/migration/migration.hpp @@ -1,3 +1,11 @@ +/* Copyright (c) 2016, Stanislaw Halik + + * 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 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 + + * 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 + + * 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 + + * 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 + + * 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 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 + + * 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 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 + + * 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 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 + + * 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 + + * 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 + + * 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" diff --git a/proto-vjoystick/vjoystick.cpp b/proto-vjoystick/vjoystick.cpp index d05c54c5..85fe9421 100644 --- a/proto-vjoystick/vjoystick.cpp +++ b/proto-vjoystick/vjoystick.cpp @@ -1,3 +1,10 @@ +/* Copyright (c) 2016, Stanislaw Halik + + * 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 "vjoystick.h" #include "api/plugin-api.hpp" #include "compat/util.hpp" diff --git a/x-plane-plugin/plugin.c b/x-plane-plugin/plugin.c index d2908e5a..7897abe6 100644 --- a/x-plane-plugin/plugin.c +++ b/x-plane-plugin/plugin.c @@ -1,3 +1,11 @@ +/* Copyright (c) 2013, Stanislaw Halik + + * 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 #include #include -- cgit v1.2.3