From 6354b0379d2e1d048c616cd62f27b30e383305ea Mon Sep 17 00:00:00 2001 From: uvos Date: Thu, 22 Jul 2021 12:56:40 +0200 Subject: [PATCH] add legeleese --- src/camera.cpp | 16 ++++++++++++++++ src/camera.h | 16 ++++++++++++++++ src/cameras.cpp | 16 ++++++++++++++++ src/cameras.h | 16 ++++++++++++++++ src/imagepipeline.cpp | 18 +++++++++++++++++- src/imagepipeline.h | 16 ++++++++++++++++ src/main.cpp | 16 ++++++++++++++++ src/profile.cpp | 16 ++++++++++++++++ src/profile.h | 16 ++++++++++++++++ src/regessioncalculator.cpp | 16 ++++++++++++++++ src/regessioncalculator.h | 16 ++++++++++++++++ src/ui/aboutdiag.cpp | 16 ++++++++++++++++ src/ui/aboutdiag.h | 16 ++++++++++++++++ src/ui/cameradialog.cpp | 16 ++++++++++++++++ src/ui/cameradialog.h | 16 ++++++++++++++++ src/ui/cameralistwidget.cpp | 16 ++++++++++++++++ src/ui/cameralistwidget.h | 16 ++++++++++++++++ src/ui/configurecameradialog.cpp | 16 ++++++++++++++++ src/ui/configurecameradialog.h | 16 ++++++++++++++++ src/ui/cvimageviewer.cpp | 16 ++++++++++++++++ src/ui/cvimageviewer.h | 16 ++++++++++++++++ src/ui/editprofiledialog.cpp | 16 ++++++++++++++++ src/ui/editprofiledialog.h | 16 ++++++++++++++++ src/ui/led.cpp | 16 ++++++++++++++++ src/ui/led.h | 16 ++++++++++++++++ src/ui/mainwindow.cpp | 16 ++++++++++++++++ src/ui/mainwindow.h | 16 ++++++++++++++++ src/ui/plot.cpp | 16 ++++++++++++++++ src/ui/plot.h | 16 ++++++++++++++++ src/ui/profiledialog.cpp | 16 ++++++++++++++++ src/ui/profiledialog.h | 16 ++++++++++++++++ src/ui/regressiondiag.cpp | 16 ++++++++++++++++ src/ui/regressiondiag.h | 16 ++++++++++++++++ src/ui/statisticsdialog.cpp | 16 ++++++++++++++++ src/ui/statisticsdialog.h | 16 ++++++++++++++++ src/utilites.cpp | 16 ++++++++++++++++ src/utilites.h | 16 ++++++++++++++++ 37 files changed, 593 insertions(+), 1 deletion(-) diff --git a/src/camera.cpp b/src/camera.cpp index 6e67e7d..3337be9 100644 --- a/src/camera.cpp +++ b/src/camera.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "camera.h" #include #include diff --git a/src/camera.h b/src/camera.h index a1f43e9..8820747 100644 --- a/src/camera.h +++ b/src/camera.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef CAMERA_H #define CAMERA_H diff --git a/src/cameras.cpp b/src/cameras.cpp index 18150d7..81c637b 100644 --- a/src/cameras.cpp +++ b/src/cameras.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "cameras.h" #include #include diff --git a/src/cameras.h b/src/cameras.h index 28fbab5..71063d1 100644 --- a/src/cameras.h +++ b/src/cameras.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef CAMERAS_H #define CAMERAS_H diff --git a/src/imagepipeline.cpp b/src/imagepipeline.cpp index e09781c..cf87090 100644 --- a/src/imagepipeline.cpp +++ b/src/imagepipeline.cpp @@ -1,4 +1,20 @@ -#include "imagepipeline.h" +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ +#include "imagepipeline.h" #include #include #include diff --git a/src/imagepipeline.h b/src/imagepipeline.h index a12f9f8..83d637b 100644 --- a/src/imagepipeline.h +++ b/src/imagepipeline.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef IMAGEPIPELINE_H #define IMAGEPIPELINE_H diff --git a/src/main.cpp b/src/main.cpp index c1a77ce..8ae9eb5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include #include #include diff --git a/src/profile.cpp b/src/profile.cpp index 9d8aad0..85990fc 100644 --- a/src/profile.cpp +++ b/src/profile.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "profile.h" #include #include diff --git a/src/profile.h b/src/profile.h index a0cbbb2..37f896e 100644 --- a/src/profile.h +++ b/src/profile.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef PROFILE_H #define PROFILE_H #include diff --git a/src/regessioncalculator.cpp b/src/regessioncalculator.cpp index 0a95154..3c32f88 100644 --- a/src/regessioncalculator.cpp +++ b/src/regessioncalculator.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "regessioncalculator.h" #include #include diff --git a/src/regessioncalculator.h b/src/regessioncalculator.h index 4a54dbe..db06f91 100644 --- a/src/regessioncalculator.h +++ b/src/regessioncalculator.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version 3 as published by + * the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef REGESSIONCALCULATOR_H #define REGESSIONCALCULATOR_H diff --git a/src/ui/aboutdiag.cpp b/src/ui/aboutdiag.cpp index 208d7f2..92742a6 100644 --- a/src/ui/aboutdiag.cpp +++ b/src/ui/aboutdiag.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "aboutdiag.h" #include "ui_aboutdiag.h" #include diff --git a/src/ui/aboutdiag.h b/src/ui/aboutdiag.h index e85e43a..f9cbd89 100644 --- a/src/ui/aboutdiag.h +++ b/src/ui/aboutdiag.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef ABOUTTELSYS_H #define ABOUTTELSYS_H diff --git a/src/ui/cameradialog.cpp b/src/ui/cameradialog.cpp index 3d8f1a8..e426fb1 100644 --- a/src/ui/cameradialog.cpp +++ b/src/ui/cameradialog.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "cameradialog.h" #include "ui_cameradialog.h" #include "../cameras.h" diff --git a/src/ui/cameradialog.h b/src/ui/cameradialog.h index 04cfd58..84bc2c2 100644 --- a/src/ui/cameradialog.h +++ b/src/ui/cameradialog.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef CAMERADIALOG_H #define CAMERADIALOG_H diff --git a/src/ui/cameralistwidget.cpp b/src/ui/cameralistwidget.cpp index 6042f53..9734383 100644 --- a/src/ui/cameralistwidget.cpp +++ b/src/ui/cameralistwidget.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "cameralistwidget.h" #include #include diff --git a/src/ui/cameralistwidget.h b/src/ui/cameralistwidget.h index 48e10cb..d669b7c 100644 --- a/src/ui/cameralistwidget.h +++ b/src/ui/cameralistwidget.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef CAMERALISTWIDGET_H #define CAMERALISTWIDGET_H diff --git a/src/ui/configurecameradialog.cpp b/src/ui/configurecameradialog.cpp index 4195cf8..2ce63cd 100644 --- a/src/ui/configurecameradialog.cpp +++ b/src/ui/configurecameradialog.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "configurecameradialog.h" #include "ui_configurecameradialog.h" diff --git a/src/ui/configurecameradialog.h b/src/ui/configurecameradialog.h index 26ad080..693562b 100644 --- a/src/ui/configurecameradialog.h +++ b/src/ui/configurecameradialog.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef CONFIGURECAMERADIALOG_H #define CONFIGURECAMERADIALOG_H diff --git a/src/ui/cvimageviewer.cpp b/src/ui/cvimageviewer.cpp index b8e0c29..0881372 100644 --- a/src/ui/cvimageviewer.cpp +++ b/src/ui/cvimageviewer.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "cvimageviewer.h" #include #include diff --git a/src/ui/cvimageviewer.h b/src/ui/cvimageviewer.h index c6a9282..5a71bf5 100644 --- a/src/ui/cvimageviewer.h +++ b/src/ui/cvimageviewer.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef CVIMAGEVIEWER_H #define CVIMAGEVIEWER_H diff --git a/src/ui/editprofiledialog.cpp b/src/ui/editprofiledialog.cpp index b986a70..6f2843f 100644 --- a/src/ui/editprofiledialog.cpp +++ b/src/ui/editprofiledialog.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "editprofiledialog.h" #include "ui_editprofiledialog.h" #include diff --git a/src/ui/editprofiledialog.h b/src/ui/editprofiledialog.h index 6a899c8..2b61bba 100644 --- a/src/ui/editprofiledialog.h +++ b/src/ui/editprofiledialog.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef EDDITPROFILEDIALOG_H #define EDDITPROFILEDIALOG_H diff --git a/src/ui/led.cpp b/src/ui/led.cpp index b329698..8509e6d 100644 --- a/src/ui/led.cpp +++ b/src/ui/led.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "led.h" #include diff --git a/src/ui/led.h b/src/ui/led.h index f3674d6..6cd4cd1 100644 --- a/src/ui/led.h +++ b/src/ui/led.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef LED_H #define LED_H diff --git a/src/ui/mainwindow.cpp b/src/ui/mainwindow.cpp index d764ddb..4ca65ee 100644 --- a/src/ui/mainwindow.cpp +++ b/src/ui/mainwindow.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "mainwindow.h" #include "./ui_mainwindow.h" #include diff --git a/src/ui/mainwindow.h b/src/ui/mainwindow.h index ce3e46d..015bf7b 100644 --- a/src/ui/mainwindow.h +++ b/src/ui/mainwindow.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef MAINWINDOW_H #define MAINWINDOW_H diff --git a/src/ui/plot.cpp b/src/ui/plot.cpp index 336b0f6..1ba19b0 100644 --- a/src/ui/plot.cpp +++ b/src/ui/plot.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "plot.h" #include diff --git a/src/ui/plot.h b/src/ui/plot.h index bad9071..2de253a 100644 --- a/src/ui/plot.h +++ b/src/ui/plot.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef PLOT_H #define PLOT_H diff --git a/src/ui/profiledialog.cpp b/src/ui/profiledialog.cpp index a6f04ff..f8f8c6d 100644 --- a/src/ui/profiledialog.cpp +++ b/src/ui/profiledialog.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "profiledialog.h" #include "ui_profiledialog.h" #include "editprofiledialog.h" diff --git a/src/ui/profiledialog.h b/src/ui/profiledialog.h index a4679c7..1aee0b4 100644 --- a/src/ui/profiledialog.h +++ b/src/ui/profiledialog.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef PROFILEDIALOG_H #define PROFILEDIALOG_H diff --git a/src/ui/regressiondiag.cpp b/src/ui/regressiondiag.cpp index 4ae407c..90659e6 100644 --- a/src/ui/regressiondiag.cpp +++ b/src/ui/regressiondiag.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "regressiondiag.h" #include "ui_regressiondiag.h" diff --git a/src/ui/regressiondiag.h b/src/ui/regressiondiag.h index 32fd7b0..78658be 100644 --- a/src/ui/regressiondiag.h +++ b/src/ui/regressiondiag.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef REGRESSIONDIAG_H #define REGRESSIONDIAG_H diff --git a/src/ui/statisticsdialog.cpp b/src/ui/statisticsdialog.cpp index 9316056..f0b08af 100644 --- a/src/ui/statisticsdialog.cpp +++ b/src/ui/statisticsdialog.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "statisticsdialog.h" #include "ui_statisticsdialog.h" diff --git a/src/ui/statisticsdialog.h b/src/ui/statisticsdialog.h index f0927c6..22aa50d 100644 --- a/src/ui/statisticsdialog.h +++ b/src/ui/statisticsdialog.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef STATISTICSDIALOG_H #define STATISTICSDIALOG_H diff --git a/src/utilites.cpp b/src/utilites.cpp index 8656cc0..a5d6bc5 100644 --- a/src/utilites.cpp +++ b/src/utilites.cpp @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #include "utilites.h" #include diff --git a/src/utilites.h b/src/utilites.h index eeb57c0..b19dd84 100644 --- a/src/utilites.h +++ b/src/utilites.h @@ -1,3 +1,19 @@ +/*UVOS*/ + +/* This file is part of MAClient copyright © 2021 Carl Philipp Klemm. + * + * MAClient is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License (GPL) version + * 3 as published by the Free Software Foundation. + * + * MAClient 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 MAClient. If not, see . +*/ #ifndef UTILITYS_H #define UTILITYS_H