From c865faf2de6f2b6151c8aa9623a21312ffdfa20a Mon Sep 17 00:00:00 2001 From: Bernd Hahnebach Date: Mon, 16 Mar 2020 06:43:13 +0100 Subject: [PATCH] FEM: improve some licence headers and doxygen docu --- src/Mod/Fem/femcommands/commands.py | 9 +++++++++ src/Mod/Fem/femcommands/manager.py | 16 ++++++++-------- src/Mod/Fem/femsolver/run.py | 2 +- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/src/Mod/Fem/femcommands/commands.py b/src/Mod/Fem/femcommands/commands.py index e50d5a40d0..c39b477050 100644 --- a/src/Mod/Fem/femcommands/commands.py +++ b/src/Mod/Fem/femcommands/commands.py @@ -1,6 +1,8 @@ # *************************************************************************** # * Copyright (c) 2016 Bernd Hahnebach * # * * +# * This file is part of the FreeCAD CAx development system. * +# * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * # * as published by the Free Software Foundation; either version 2 of * @@ -19,6 +21,13 @@ # * * # *************************************************************************** +__title__ = "FreeCAD FEM command definitions" +__author__ = "Bernd Hahnebach" +__url__ = "http://www.freecadweb.org" + +## @package commands +# \ingroup FEM +# \brief FreeCAD FEM command definitions import FreeCAD import FreeCADGui diff --git a/src/Mod/Fem/femcommands/manager.py b/src/Mod/Fem/femcommands/manager.py index f0d05cbc9e..83fd628f3e 100644 --- a/src/Mod/Fem/femcommands/manager.py +++ b/src/Mod/Fem/femcommands/manager.py @@ -1,6 +1,8 @@ # *************************************************************************** -# * Copyright (c) 2015 FreeCAD Developers * # * Copyright (c) 2015 Przemo Fiszt * +# * Copyright (c) 2016 Bernd Hahnebach * +# * * +# * This file is part of the FreeCAD CAx development system. * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * @@ -20,12 +22,13 @@ # * * # *************************************************************************** -__title__ = "Fem Commands" -__author__ = "Przemo Firszt" +__title__ = "FreeCAD FEM command base class" +__author__ = "Przemo Firszt, Bernd Hahnebach" __url__ = "http://www.freecadweb.org" -## \addtogroup FEM -# @{ +## @package manager +# \ingroup FEM +# \brief FreeCAD FEM command base class import FreeCAD @@ -364,6 +367,3 @@ class CommandManager(object): ) FreeCADGui.Selection.clearSelection() FreeCAD.ActiveDocument.recompute() - - -## @} diff --git a/src/Mod/Fem/femsolver/run.py b/src/Mod/Fem/femsolver/run.py index f940372ff8..5c0a279aec 100644 --- a/src/Mod/Fem/femsolver/run.py +++ b/src/Mod/Fem/femsolver/run.py @@ -33,7 +33,7 @@ modules. """ __title__ = "FreeCAD FEM solver run" -__author__ = "Markus Hovorka" +__author__ = "Markus Hovorka, Bernd Hahnebach" __url__ = "http://www.freecadweb.org" import os