From 94f86654a7f6efb7577a2246abf83bd478e28bfe Mon Sep 17 00:00:00 2001
From: "g.luccisano" <giacomo.luccisano@isae-supaero.fr>
Date: Fri, 1 Mar 2024 16:28:10 +0100
Subject: [PATCH] added license

---
 gaphor_parser/functionsDB.py                  | 19 +++++++++++++++++++
 gaphor_parser/gaphorParser.py                 | 19 +++++++++++++++++++
 gaphor_parser/graphWriter.py                  | 18 ++++++++++++++++++
 .../gaphor_parser/parserFunctionsDB.py        | 18 ++++++++++++++++++
 .../gaphor_parser/parserGaphorMain.py         | 18 ++++++++++++++++++
 .../gaphor_parser/parserGraphWriter.py        | 18 ++++++++++++++++++
 6 files changed, 110 insertions(+)

diff --git a/gaphor_parser/functionsDB.py b/gaphor_parser/functionsDB.py
index c3abed3..95f59e7 100644
--- a/gaphor_parser/functionsDB.py
+++ b/gaphor_parser/functionsDB.py
@@ -1,3 +1,22 @@
+""" Copyright 2024 Giacomo Luccisano.
+
+This file is part of Gaphor_Parser.
+
+Gaphor_Parser 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.
+
+Gaphor_Parser 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 Gaphor_Parser.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
+
 import xml.etree.ElementTree as ET
 import sys
 from graphWriter import *
diff --git a/gaphor_parser/gaphorParser.py b/gaphor_parser/gaphorParser.py
index a7b6deb..94a5891 100644
--- a/gaphor_parser/gaphorParser.py
+++ b/gaphor_parser/gaphorParser.py
@@ -1,3 +1,22 @@
+""" Copyright 2024 Giacomo Luccisano.
+
+This file is part of Gaphor_Parser.
+
+Gaphor_Parser 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.
+
+Gaphor_Parser 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 Gaphor_Parser.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
+
 import xml.etree.ElementTree as ET
 import os
 import yaml
diff --git a/gaphor_parser/graphWriter.py b/gaphor_parser/graphWriter.py
index 6e7b3ee..83f2be9 100644
--- a/gaphor_parser/graphWriter.py
+++ b/gaphor_parser/graphWriter.py
@@ -1,3 +1,21 @@
+""" Copyright 2024 Giacomo Luccisano.
+
+This file is part of Gaphor_Parser.
+
+Gaphor_Parser 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.
+
+Gaphor_Parser 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 Gaphor_Parser.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
 import graphviz
 
 def printCompSubGraph(compName: str, components: dict[str, dict[str, any]], 
diff --git a/python_scripts/dependencies/gaphor_parser/parserFunctionsDB.py b/python_scripts/dependencies/gaphor_parser/parserFunctionsDB.py
index 97594da..305a00e 100644
--- a/python_scripts/dependencies/gaphor_parser/parserFunctionsDB.py
+++ b/python_scripts/dependencies/gaphor_parser/parserFunctionsDB.py
@@ -1,3 +1,21 @@
+""" Copyright 2024 Giacomo Luccisano.
+
+This file is part of Gaphor_Parser.
+
+Gaphor_Parser 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.
+
+Gaphor_Parser 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 Gaphor_Parser.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
 import xml.etree.ElementTree as ET
 import sys
 from .parserGraphWriter import *
diff --git a/python_scripts/dependencies/gaphor_parser/parserGaphorMain.py b/python_scripts/dependencies/gaphor_parser/parserGaphorMain.py
index 8b6254a..40b635d 100644
--- a/python_scripts/dependencies/gaphor_parser/parserGaphorMain.py
+++ b/python_scripts/dependencies/gaphor_parser/parserGaphorMain.py
@@ -1,3 +1,21 @@
+""" Copyright 2024 Giacomo Luccisano.
+
+This file is part of Gaphor_Parser.
+
+Gaphor_Parser 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.
+
+Gaphor_Parser 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 Gaphor_Parser.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
 import xml.etree.ElementTree as ET
 import os
 import yaml
diff --git a/python_scripts/dependencies/gaphor_parser/parserGraphWriter.py b/python_scripts/dependencies/gaphor_parser/parserGraphWriter.py
index 6e7b3ee..83f2be9 100644
--- a/python_scripts/dependencies/gaphor_parser/parserGraphWriter.py
+++ b/python_scripts/dependencies/gaphor_parser/parserGraphWriter.py
@@ -1,3 +1,21 @@
+""" Copyright 2024 Giacomo Luccisano.
+
+This file is part of Gaphor_Parser.
+
+Gaphor_Parser 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.
+
+Gaphor_Parser 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 Gaphor_Parser.  If not, see <http://www.gnu.org/licenses/>.
+"""
+
 import graphviz
 
 def printCompSubGraph(compName: str, components: dict[str, dict[str, any]], 
-- 
GitLab