From fd55e03f5ab0264f038023658b6f64854242097f Mon Sep 17 00:00:00 2001 From: valer_71r1exg <valerio.pastore@inaf.it> Date: Thu, 30 May 2024 10:47:40 +0200 Subject: [PATCH] add license --- deps/Base-DAQ | 2 +- include/Astri_Horn_Generic.h | 19 +++++++++++++++++++ include/Astri_Horn_Recognized_Packet.h | 19 +++++++++++++++++++ include/Astri_MA_Generic.h | 19 +++++++++++++++++++ include/Astri_MA_Recognized_Packet.h | 19 +++++++++++++++++++ include/Packet_Structure_Json.h | 19 +++++++++++++++++++ src/Astri_Horn_Generic.cpp | 19 +++++++++++++++++++ src/Astri_MA_Generic.cpp | 19 +++++++++++++++++++ src/Packet_Structure_Json.cpp | 19 +++++++++++++++++++ 9 files changed, 153 insertions(+), 1 deletion(-) diff --git a/deps/Base-DAQ b/deps/Base-DAQ index e7991d1..8ee59d8 160000 --- a/deps/Base-DAQ +++ b/deps/Base-DAQ @@ -1 +1 @@ -Subproject commit e7991d1f8c77412082c1bac8c1f9e6678b1a46ee +Subproject commit 8ee59d82d13d9555f6b7386312e57181586709ee diff --git a/include/Astri_Horn_Generic.h b/include/Astri_Horn_Generic.h index 25433d1..ef09f96 100644 --- a/include/Astri_Horn_Generic.h +++ b/include/Astri_Horn_Generic.h @@ -1,3 +1,22 @@ +/* +************************************************************************** +* Copyright (C) 2023 INAF +* +* This program is free software: you can redistribute it and/or modify it +* under the terms of the GNU Lesser 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 Lesser General Public License for more details. +* You should have received a copy of the GNU Lesser General Public License +* along with this program. If not, see <https://www.gnu.org/licenses/>. +* +* Authors: +* +* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it +**************************************************************************** +*/ #pragma once #include <Base_Packet.h> diff --git a/include/Astri_Horn_Recognized_Packet.h b/include/Astri_Horn_Recognized_Packet.h index 77d6e82..151ba53 100755 --- a/include/Astri_Horn_Recognized_Packet.h +++ b/include/Astri_Horn_Recognized_Packet.h @@ -1,3 +1,22 @@ +/* +************************************************************************** +* Copyright (C) 2023 INAF +* +* This program is free software: you can redistribute it and/or modify it +* under the terms of the GNU Lesser 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 Lesser General Public License for more details. +* You should have received a copy of the GNU Lesser General Public License +* along with this program. If not, see <https://www.gnu.org/licenses/>. +* +* Authors: +* +* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it +**************************************************************************** +*/ /** * @brief This file contains the definition of the recognizedPackets for Astri Horn. * diff --git a/include/Astri_MA_Generic.h b/include/Astri_MA_Generic.h index c2b31e7..82a1254 100644 --- a/include/Astri_MA_Generic.h +++ b/include/Astri_MA_Generic.h @@ -1,3 +1,22 @@ +/* +************************************************************************** +* Copyright (C) 2023 INAF +* +* This program is free software: you can redistribute it and/or modify it +* under the terms of the GNU Lesser 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 Lesser General Public License for more details. +* You should have received a copy of the GNU Lesser General Public License +* along with this program. If not, see <https://www.gnu.org/licenses/>. +* +* Authors: +* +* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it +**************************************************************************** +*/ #pragma once #include <Base_Packet.h> diff --git a/include/Astri_MA_Recognized_Packet.h b/include/Astri_MA_Recognized_Packet.h index 138cf28..e3988c6 100755 --- a/include/Astri_MA_Recognized_Packet.h +++ b/include/Astri_MA_Recognized_Packet.h @@ -1,3 +1,22 @@ +/* +************************************************************************** +* Copyright (C) 2023 INAF +* +* This program is free software: you can redistribute it and/or modify it +* under the terms of the GNU Lesser 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 Lesser General Public License for more details. +* You should have received a copy of the GNU Lesser General Public License +* along with this program. If not, see <https://www.gnu.org/licenses/>. +* +* Authors: +* +* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it +**************************************************************************** +*/ /** * @brief This file contains the definition of the recognizedPackets for Astri MA. * diff --git a/include/Packet_Structure_Json.h b/include/Packet_Structure_Json.h index 52e5f65..8060a2b 100644 --- a/include/Packet_Structure_Json.h +++ b/include/Packet_Structure_Json.h @@ -1,3 +1,22 @@ +/* +************************************************************************** +* Copyright (C) 2023 INAF +* +* This program is free software: you can redistribute it and/or modify it +* under the terms of the GNU Lesser 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 Lesser General Public License for more details. +* You should have received a copy of the GNU Lesser General Public License +* along with this program. If not, see <https://www.gnu.org/licenses/>. +* +* Authors: +* +* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it +**************************************************************************** +*/ #pragma once #include <Base_Packet.h> diff --git a/src/Astri_Horn_Generic.cpp b/src/Astri_Horn_Generic.cpp index 5d67c45..1cd3727 100644 --- a/src/Astri_Horn_Generic.cpp +++ b/src/Astri_Horn_Generic.cpp @@ -1,3 +1,22 @@ +/* +************************************************************************** +* Copyright (C) 2023 INAF +* +* This program is free software: you can redistribute it and/or modify it +* under the terms of the GNU Lesser 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 Lesser General Public License for more details. +* You should have received a copy of the GNU Lesser General Public License +* along with this program. If not, see <https://www.gnu.org/licenses/>. +* +* Authors: +* +* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it +**************************************************************************** +*/ #include <Astri_Horn_Generic.h> #include <Astri_Horn_Recognized_Packet.h> diff --git a/src/Astri_MA_Generic.cpp b/src/Astri_MA_Generic.cpp index 0720663..5a95e22 100644 --- a/src/Astri_MA_Generic.cpp +++ b/src/Astri_MA_Generic.cpp @@ -1,3 +1,22 @@ +/* +************************************************************************** +* Copyright (C) 2023 INAF +* +* This program is free software: you can redistribute it and/or modify it +* under the terms of the GNU Lesser 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 Lesser General Public License for more details. +* You should have received a copy of the GNU Lesser General Public License +* along with this program. If not, see <https://www.gnu.org/licenses/>. +* +* Authors: +* +* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it +**************************************************************************** +*/ #include <Astri_MA_Generic.h> #include <Astri_MA_Recognized_Packet.h> diff --git a/src/Packet_Structure_Json.cpp b/src/Packet_Structure_Json.cpp index 07eaabe..c806d50 100644 --- a/src/Packet_Structure_Json.cpp +++ b/src/Packet_Structure_Json.cpp @@ -1,3 +1,22 @@ +/* +************************************************************************** +* Copyright (C) 2023 INAF +* +* This program is free software: you can redistribute it and/or modify it +* under the terms of the GNU Lesser 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 Lesser General Public License for more details. +* You should have received a copy of the GNU Lesser General Public License +* along with this program. If not, see <https://www.gnu.org/licenses/>. +* +* Authors: +* +* <>Valerio Pastore INAF-OAS Bologna valerio.pastore@inaf.it +**************************************************************************** +*/ #include <Packet_Structure_Json.h> #include <ctime> -- GitLab