From 3fe4fcca428cdb45fdc3bce77c68dc37a02e00d2 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Sun, 7 Jun 2020 14:43:47 +0200 Subject: [PATCH] add license notice to ScStw Libraries --- ScStwLibraries/headers/ScStw.hpp | 18 ++++++++++++++++++ ScStwLibraries/headers/ScStwLibraries_global.h | 18 ++++++++++++++++++ ScStwLibraries/headers/scstwclient.h | 18 ++++++++++++++++++ ScStwLibraries/headers/scstwlibraries.h | 18 ++++++++++++++++++ ScStwLibraries/headers/scstwrace.h | 18 ++++++++++++++++++ .../headers/scstwremotemonitorrace.h | 18 ++++++++++++++++++ ScStwLibraries/headers/scstwsoundplayer.h | 18 ++++++++++++++++++ ScStwLibraries/headers/scstwtimer.h | 18 ++++++++++++++++++ ScStwLibraries/sources/ScStw.cpp | 18 ++++++++++++++++++ ScStwLibraries/sources/scstwclient.cpp | 18 ++++++++++++++++++ ScStwLibraries/sources/scstwlibraries.cpp | 18 ++++++++++++++++++ ScStwLibraries/sources/scstwrace.cpp | 18 ++++++++++++++++++ .../sources/scstwremotemonitorrace.cpp | 18 ++++++++++++++++++ ScStwLibraries/sources/scstwsoundplayer.cpp | 18 ++++++++++++++++++ ScStwLibraries/sources/scstwtimer.cpp | 18 ++++++++++++++++++ 15 files changed, 270 insertions(+) diff --git a/ScStwLibraries/headers/ScStw.hpp b/ScStwLibraries/headers/ScStw.hpp index 0dfbaaa..195b750 100644 --- a/ScStwLibraries/headers/ScStw.hpp +++ b/ScStwLibraries/headers/ScStw.hpp @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #ifndef SCSTW_HPP #define SCSTW_HPP diff --git a/ScStwLibraries/headers/ScStwLibraries_global.h b/ScStwLibraries/headers/ScStwLibraries_global.h index 55f84e2..e6cdff2 100644 --- a/ScStwLibraries/headers/ScStwLibraries_global.h +++ b/ScStwLibraries/headers/ScStwLibraries_global.h @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #ifndef SCSTWLIBRARIES_GLOBAL_H #define SCSTWLIBRARIES_GLOBAL_H diff --git a/ScStwLibraries/headers/scstwclient.h b/ScStwLibraries/headers/scstwclient.h index ca3410a..390ea14 100644 --- a/ScStwLibraries/headers/scstwclient.h +++ b/ScStwLibraries/headers/scstwclient.h @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #ifndef SCSTWCLIENT_H #define SCSTWCLIENT_H diff --git a/ScStwLibraries/headers/scstwlibraries.h b/ScStwLibraries/headers/scstwlibraries.h index 3a4f4ab..df9f878 100644 --- a/ScStwLibraries/headers/scstwlibraries.h +++ b/ScStwLibraries/headers/scstwlibraries.h @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #ifndef SCSTWLIBRARIES_H #define SCSTWLIBRARIES_H diff --git a/ScStwLibraries/headers/scstwrace.h b/ScStwLibraries/headers/scstwrace.h index 62ab2ed..206a457 100644 --- a/ScStwLibraries/headers/scstwrace.h +++ b/ScStwLibraries/headers/scstwrace.h @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #ifndef SCSTWRACE_H #define SCSTWRACE_H diff --git a/ScStwLibraries/headers/scstwremotemonitorrace.h b/ScStwLibraries/headers/scstwremotemonitorrace.h index 95e87e5..c36db54 100644 --- a/ScStwLibraries/headers/scstwremotemonitorrace.h +++ b/ScStwLibraries/headers/scstwremotemonitorrace.h @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #ifndef SCSTWREMOTEMONITORRACE_H #define SCSTWREMOTEMONITORRACE_H diff --git a/ScStwLibraries/headers/scstwsoundplayer.h b/ScStwLibraries/headers/scstwsoundplayer.h index bfb7447..91c17cb 100644 --- a/ScStwLibraries/headers/scstwsoundplayer.h +++ b/ScStwLibraries/headers/scstwsoundplayer.h @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #ifndef SCSTWSTARTSOUNDPLAYER_H #define SCSTWSTARTSOUNDPLAYER_H diff --git a/ScStwLibraries/headers/scstwtimer.h b/ScStwLibraries/headers/scstwtimer.h index 8bdf412..bfe5469 100644 --- a/ScStwLibraries/headers/scstwtimer.h +++ b/ScStwLibraries/headers/scstwtimer.h @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #ifndef SCSTWTIMER_H #define SCSTWTIMER_H diff --git a/ScStwLibraries/sources/ScStw.cpp b/ScStwLibraries/sources/ScStw.cpp index 68a97ba..f01abb2 100644 --- a/ScStwLibraries/sources/ScStw.cpp +++ b/ScStwLibraries/sources/ScStw.cpp @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #include "../headers/ScStw.hpp" const char *ScStw::SOCKET_MESSAGE_START_KEY = ""; diff --git a/ScStwLibraries/sources/scstwclient.cpp b/ScStwLibraries/sources/scstwclient.cpp index 068524f..476b6f1 100644 --- a/ScStwLibraries/sources/scstwclient.cpp +++ b/ScStwLibraries/sources/scstwclient.cpp @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #include "../headers/scstwclient.h" ScStwClient * pGlobalScStwClient = nullptr; diff --git a/ScStwLibraries/sources/scstwlibraries.cpp b/ScStwLibraries/sources/scstwlibraries.cpp index 439a636..95a56da 100644 --- a/ScStwLibraries/sources/scstwlibraries.cpp +++ b/ScStwLibraries/sources/scstwlibraries.cpp @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #include "../headers/scstwlibraries.h" ScStwLibraries::ScStwLibraries(QObject *parent) : QObject(parent) diff --git a/ScStwLibraries/sources/scstwrace.cpp b/ScStwLibraries/sources/scstwrace.cpp index 7acce31..0d86f1c 100644 --- a/ScStwLibraries/sources/scstwrace.cpp +++ b/ScStwLibraries/sources/scstwrace.cpp @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #include "../headers/scstwrace.h" ScStwRace::ScStwRace(QObject *parent) : QObject(parent) diff --git a/ScStwLibraries/sources/scstwremotemonitorrace.cpp b/ScStwLibraries/sources/scstwremotemonitorrace.cpp index 8c769da..d80d8ba 100644 --- a/ScStwLibraries/sources/scstwremotemonitorrace.cpp +++ b/ScStwLibraries/sources/scstwremotemonitorrace.cpp @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #include "../headers/scstwremotemonitorrace.h" ScStwRemoteMonitorRace::ScStwRemoteMonitorRace(ScStwClient *monitorClient, QObject *parent) : ScStwRace(parent) diff --git a/ScStwLibraries/sources/scstwsoundplayer.cpp b/ScStwLibraries/sources/scstwsoundplayer.cpp index 4cf768d..be5473c 100644 --- a/ScStwLibraries/sources/scstwsoundplayer.cpp +++ b/ScStwLibraries/sources/scstwsoundplayer.cpp @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #include "../headers/scstwsoundplayer.h" ScStwSoundPlayer::ScStwSoundPlayer(QObject *parent) : QObject(parent) diff --git a/ScStwLibraries/sources/scstwtimer.cpp b/ScStwLibraries/sources/scstwtimer.cpp index 5d05881..737c058 100644 --- a/ScStwLibraries/sources/scstwtimer.cpp +++ b/ScStwLibraries/sources/scstwtimer.cpp @@ -1,3 +1,21 @@ +/**************************************************************************** + ** ScStw Libraries + ** Copyright (C) 2020 Itsblue development + ** + ** 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 . + ****************************************************************************/ + #include "../headers/scstwtimer.h" ScStwTimer::ScStwTimer(QObject *parent, bool directControlEnabled) : QObject(parent)