diff --git a/SConstruct b/SConstruct index dba344dc0..aae65557f 100644 --- a/SConstruct +++ b/SConstruct @@ -1,24 +1,15 @@ -# -*- python -*- +# coding: utf-8 ## ## SConstruct - SCons based build-system for Lumiera ## -# Copyright (C) Lumiera.org -# 2008, Hermann Vosseler +# Copyright (C) +# 2008, Hermann Vosseler # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# **Lumiera** 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. ##################################################################### diff --git a/admin/README.deb.lumiera.org.PUB.gpg b/admin/README.deb.lumiera.org.PUB.gpg index de4eaa2b1..170faf439 100644 --- a/admin/README.deb.lumiera.org.PUB.gpg +++ b/admin/README.deb.lumiera.org.PUB.gpg @@ -1,5 +1,5 @@ This is the Public Key of the Package signing GPG key used for building of Debian DEB packages on Lumiera.org -Fingerprint: D0333C21252B66D54A4CC1D265B66B07A1DE94B2 -UID: Hermann Vosseler +Fingerprint: 11FD F5D2 DBD7 BBD7 F4D9 D9C4 2CF2 5392 6238 2557 +UID: Ichthyo (DEB-Package) diff --git a/admin/headercheck b/admin/headercheck deleted file mode 100755 index ada5e1e53..000000000 --- a/admin/headercheck +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/bash - -# This is a small tool which checks that all headers are sufficiently standalone -# and include anything they need. -# In future we might extend this to find out bogus includes by predefining (-D) -# headerguards they include, effectively disableing this include for a test. - -find src -name '*.h' | while read header; do - echo -e "testing $header" - awk 'BEGIN {print "#include \""ARGV[1]"\"\nint main(){"} - /^(struct|enum|class).*[^;]$/{print "\t" $0 " test_" NR "; (void) test_"NR";" } - END {print "\treturn 0;\n}"}' $header >,headertest.c - gcc -D_GNU_SOURCE -DEBUG_ALPHA -std=gnu99 -Werror -Wall -I src -c ,headertest.c - echo -done - -find src -name '*.hpp' | while read header; do - echo -e "testing $header" - awk 'BEGIN {print "#include \""ARGV[1]"\"\nint main(){"} - /^(struct|enum|class).*[^;]$/{print "\t" $0 " test_" NR "; (void) test_"NR";" } - END {print "\treturn 0;\n}"}' $header >,headertest.cpp - g++ -D_GNU_SOURCE -DEBUG_ALPHA -Werror -Wall -I src -c ,headertest.cpp - echo -done - diff --git a/admin/lumiera_c_skeleton b/admin/lumiera_c_skeleton deleted file mode 100755 index 26072757d..000000000 --- a/admin/lumiera_c_skeleton +++ /dev/null @@ -1,135 +0,0 @@ -#!/bin/bash - -if test $# -lt 2; then -cat <${NAME}.h < - - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*/ - -#ifndef LUMIERA_${NAME_UPPER}_H -#define LUMIERA_${NAME_UPPER}_H - -//TODO: Support library includes// - - -//TODO: Forward declarations// - - -//TODO: Lumiera header includes// - - -//TODO: System includes// -#include - - -/** - * @file - * - */ - -//TODO: declarations go here// - - -#endif -/* -// Local Variables: -// mode: C -// c-file-style: "gnu" -// indent-tabs-mode: nil -// End: -*/ -EOF - -test -f ${NAME}.c || cat >${NAME}.c < - - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*/ - -//TODO: Support library includes// - - -//TODO: Lumiera header includes// -#include "${PWD##*/}/${NAME}.h" - -//TODO: internal/static forward declarations// - - -//TODO: System includes// - - -/** - * @file - * - */ - -NOBUG_DEFINE_FLAG_PARENT (${NAME}, /*TODO insert parent flag here */); - - -//code goes here// - - - -/* -// Local Variables: -// mode: C -// c-file-style: "gnu" -// indent-tabs-mode: nil -// End: -*/ -EOF - -test -f Makefile.am && ed Makefile.am >/dev/null < +# Copyright (C) scons.org/wiki/GchBuilder +# 2006, Tim Blechmann +# 2008, Hermann Vosseler # -# This program is free software; you can redistribute it and/or +# This library 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 2 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 http://www.gnu.org/licenses/ ##################################################################### # history: 8/2008 adapted for Lumiera build system diff --git a/admin/scons/Buildhelper.py b/admin/scons/Buildhelper.py index 78733e246..e7adfe02b 100644 --- a/admin/scons/Buildhelper.py +++ b/admin/scons/Buildhelper.py @@ -1,24 +1,15 @@ -# -*- python -*- +# coding: utf-8 ## ## Buildhelper.py - helpers, custom builders, for SConstruct ## -# Copyright (C) Lumiera.org -# 2008, Hermann Vosseler +# Copyright (C) +# 2008, Hermann Vosseler # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# **Lumiera** 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. ##################################################################### import os diff --git a/admin/scons/IconSvgRenderer.py b/admin/scons/IconSvgRenderer.py index 9de758100..230e16c83 100644 --- a/admin/scons/IconSvgRenderer.py +++ b/admin/scons/IconSvgRenderer.py @@ -1,23 +1,16 @@ #!/usr/bin/python +# coding: utf-8 # # IconSvgRenderer.py - Icon rendering utility script # -# Copyright (C) Lumiera.org -# 2008, Joel Holdsworth +# Copyright (C) +# 2008, Joel Holdsworth # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. +##################################################################### import os import sys diff --git a/admin/scons/LumieraEnvironment.py b/admin/scons/LumieraEnvironment.py index e7c29629a..5397c2fee 100644 --- a/admin/scons/LumieraEnvironment.py +++ b/admin/scons/LumieraEnvironment.py @@ -1,24 +1,15 @@ -# -*- python -*- +# coding: utf-8 ## ## LumieraEnvironment.py - custom SCons Environment ## -# Copyright (C) Lumiera.org -# 2008, Hermann Vosseler +# Copyright (C) +# 2008, Hermann Vosseler # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# **Lumiera** 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. ##################################################################### diff --git a/admin/scons/Options.py b/admin/scons/Options.py index 6852044f6..4cb33978d 100644 --- a/admin/scons/Options.py +++ b/admin/scons/Options.py @@ -1,24 +1,15 @@ -# -*- python -*- +# coding: utf-8 ## ## Options.py - SCons build: command line options and help ## -# Copyright (C) Lumiera.org -# 2012, Hermann Vosseler +# Copyright (C) +# 2012, Hermann Vosseler # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# **Lumiera** 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. ##################################################################### diff --git a/admin/scons/Platform.py b/admin/scons/Platform.py index 1be71b257..a9002aa4f 100644 --- a/admin/scons/Platform.py +++ b/admin/scons/Platform.py @@ -1,24 +1,15 @@ -# -*- python -*- +# coding: utf-8 ## ## Platform.py - SCons build: platform configuration and library detection ## -# Copyright (C) Lumiera.org -# 2012, Hermann Vosseler +# Copyright (C) +# 2012, Hermann Vosseler # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# **Lumiera** 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. ##################################################################### diff --git a/admin/scons/Setup.py b/admin/scons/Setup.py index 08489337e..421cb56de 100644 --- a/admin/scons/Setup.py +++ b/admin/scons/Setup.py @@ -1,24 +1,15 @@ -# -*- python -*- +# coding: utf-8 ## ## Setup.py - SCons build: setup, definitions and compiler flags ## -# Copyright (C) Lumiera.org -# 2012, Hermann Vosseler +# Copyright (C) +# 2012, Hermann Vosseler # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# **Lumiera** 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. ##################################################################### from SCons.Script import EnsurePythonVersion, EnsureSConsVersion, Variables, Decider diff --git a/admin/scons/ToolCCache.py b/admin/scons/ToolCCache.py index 7d93fb7a4..d95020fe0 100644 --- a/admin/scons/ToolCCache.py +++ b/admin/scons/ToolCCache.py @@ -1,24 +1,15 @@ -# -*- python -*- +# coding: utf-8 ## ## ToolCCache.py - SCons tool for integrating with CCache compiler cache ## -# Copyright (C) Lumiera.org and FreeOrion.org -# 2008, Hermann Vosseler +# Copyright (C) Lumiera.org and FreeOrion.org +# 2008, Hermann Vosseler # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# **Lumiera** 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. ##################################################################### # This SCons builder was extracted from http://www.freeorion.org/ diff --git a/admin/scons/ToolDistCC.py b/admin/scons/ToolDistCC.py index ecc45d011..443c2ae14 100644 --- a/admin/scons/ToolDistCC.py +++ b/admin/scons/ToolDistCC.py @@ -1,24 +1,15 @@ -# -*- python -*- +# coding: utf-8 ## ## ToolDistCC.py - SCons tool for distributed compilation using DistCC ## -# Copyright (C) Lumiera.org and FreeOrion.org -# 2008, Hermann Vosseler +# Copyright (C) Lumiera.org and FreeOrion.org +# 2008, Hermann Vosseler # -# 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 2 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, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# **Lumiera** 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 2 of the License, or (at your +# option) any later version. See the file COPYING for further details. ##################################################################### # This SCons builder was extracted from http://www.freeorion.org/ diff --git a/research/gtk-canvas-experiment.cpp b/research/gtk-canvas-experiment.cpp index cbfb7a728..3a4231f63 100644 --- a/research/gtk-canvas-experiment.cpp +++ b/research/gtk-canvas-experiment.cpp @@ -1,24 +1,15 @@ /* GtkCanvasExperiment - Explore capabilities of the GTK canvas widget - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file gtk-canvas-experiment.cpp diff --git a/research/gtk-canvas-experiment.hpp b/research/gtk-canvas-experiment.hpp index 1bce654e5..79c2819b8 100644 --- a/research/gtk-canvas-experiment.hpp +++ b/research/gtk-canvas-experiment.hpp @@ -1,22 +1,13 @@ /* GTK-CANVAS-EXPERIMENT.hpp - Explore capabilities of the GTK canvas widget - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/research/gtk-canvas-main.cpp b/research/gtk-canvas-main.cpp index 411659728..bbc25ae8a 100644 --- a/research/gtk-canvas-main.cpp +++ b/research/gtk-canvas-main.cpp @@ -1,22 +1,13 @@ /* gtk-canvas-main.cpp - demo application to explore the abilities of Gtk::Canvas - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/research/gtk-style-experiment.cpp b/research/gtk-style-experiment.cpp index e0555892f..01122de8b 100644 --- a/research/gtk-style-experiment.cpp +++ b/research/gtk-style-experiment.cpp @@ -1,22 +1,13 @@ /* gtk-style-experiment.cpp - simple application to investigate GTK styling - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/research/gtk-style-experiment.css b/research/gtk-style-experiment.css index c03f55edd..3480001da 100644 --- a/research/gtk-style-experiment.css +++ b/research/gtk-style-experiment.css @@ -1,8 +1,8 @@ /* gtk-style-experiment.css - investigate GTKs CSS implementation - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler Styles and Graphics of the Lumiera GUI can be used and redistributed under the the terms of the GNU General Public License version 2 or diff --git a/src/common/advice.hpp b/src/common/advice.hpp index 8a434ed77..7070d42b5 100644 --- a/src/common/advice.hpp +++ b/src/common/advice.hpp @@ -1,22 +1,13 @@ /* ADVICE.hpp - generic loosely coupled interaction guided by symbolic pattern - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/advice/advice.cpp b/src/common/advice/advice.cpp index 649aecdab..473686d6f 100644 --- a/src/common/advice/advice.cpp +++ b/src/common/advice/advice.cpp @@ -1,24 +1,15 @@ /* Advice - generic loosely coupled interaction guided by symbolic pattern - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file advice.cpp diff --git a/src/common/advice/binding.cpp b/src/common/advice/binding.cpp index 6abe95fa7..f1257dad4 100644 --- a/src/common/advice/binding.cpp +++ b/src/common/advice/binding.cpp @@ -1,24 +1,15 @@ /* Binding - pattern defining a specific attachment to the Advice system - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file advice/binding.cpp diff --git a/src/common/advice/binding.hpp b/src/common/advice/binding.hpp index 7f419289a..fb77e4e03 100644 --- a/src/common/advice/binding.hpp +++ b/src/common/advice/binding.hpp @@ -1,22 +1,13 @@ /* BINDING.hpp - pattern defining a specific attachment to the Advice system - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/advice/index.hpp b/src/common/advice/index.hpp index fed70b202..ea986aeeb 100644 --- a/src/common/advice/index.hpp +++ b/src/common/advice/index.hpp @@ -1,22 +1,13 @@ /* INDEX.hpp - data structure for organising advice solutions and matching - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/appstate.cpp b/src/common/appstate.cpp index 2eb8d6700..76bf2a795 100644 --- a/src/common/appstate.cpp +++ b/src/common/appstate.cpp @@ -1,24 +1,15 @@ /* AppState - application initialisation and behaviour - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file appstate.cpp diff --git a/src/common/appstate.hpp b/src/common/appstate.hpp index 6c2346d28..df66a01e9 100644 --- a/src/common/appstate.hpp +++ b/src/common/appstate.hpp @@ -1,22 +1,13 @@ /* APPSTATE.hpp - application initialisation and behaviour - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/basic-setup.cpp b/src/common/basic-setup.cpp index 434c55086..c3a8333b9 100644 --- a/src/common/basic-setup.cpp +++ b/src/common/basic-setup.cpp @@ -1,24 +1,15 @@ /* BasicSetup - elementary self-configuration of the application - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file basic-setup.cpp diff --git a/src/common/basic-setup.hpp b/src/common/basic-setup.hpp index 5dbdb2622..686b2d431 100644 --- a/src/common/basic-setup.hpp +++ b/src/common/basic-setup.hpp @@ -1,22 +1,13 @@ /* BASIC-SETUP.hpp - elementary self-configuration of the application - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/config-interface.c b/src/common/config-interface.c index d71196443..f80acf51e 100644 --- a/src/common/config-interface.c +++ b/src/common/config-interface.c @@ -1,24 +1,15 @@ /* Config-interface - Lumiera configuration interface implementation - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config-interface.c diff --git a/src/common/config-interface.h b/src/common/config-interface.h index 21b0a8691..8945d2536 100644 --- a/src/common/config-interface.h +++ b/src/common/config-interface.h @@ -1,22 +1,13 @@ /* CONFIG-INTERFACE.h - Lumiera configuration interface - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/config-lookup.c b/src/common/config-lookup.c index 58eda6359..42017df37 100644 --- a/src/common/config-lookup.c +++ b/src/common/config-lookup.c @@ -1,24 +1,15 @@ /* Config-lookup - Lookup functions for the config subsystem - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config-lookup.c diff --git a/src/common/config-lookup.h b/src/common/config-lookup.h index 0acff34c8..3b204c141 100644 --- a/src/common/config-lookup.h +++ b/src/common/config-lookup.h @@ -1,22 +1,13 @@ /* CONFIG-LOOKUP.h - Lookup functions for the config subsystem - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/config-rules.hpp b/src/common/config-rules.hpp index 8cd94aeb3..6bdbd1c08 100644 --- a/src/common/config-rules.hpp +++ b/src/common/config-rules.hpp @@ -1,22 +1,13 @@ /* CONFIG-RULES.hpp - interface for rule based configuration - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/config-typed.c b/src/common/config-typed.c index 96a258b8c..f351d24fd 100644 --- a/src/common/config-typed.c +++ b/src/common/config-typed.c @@ -1,24 +1,15 @@ /* Config-typed - Lumiera configuration high-level interface - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config-typed.c diff --git a/src/common/config-wordlist.c b/src/common/config-wordlist.c index 2c6a05d0e..f8a679030 100644 --- a/src/common/config-wordlist.c +++ b/src/common/config-wordlist.c @@ -1,24 +1,15 @@ /* Config-wordlist - Lumiera wordlist access functions - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config-wordlist.c diff --git a/src/common/config.c b/src/common/config.c index b08073356..a07bb91a1 100644 --- a/src/common/config.c +++ b/src/common/config.c @@ -1,24 +1,15 @@ /* Config - Lumiera configuration system - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config.c diff --git a/src/common/config.h b/src/common/config.h index 6c0ffbea1..b34d88fd0 100644 --- a/src/common/config.h +++ b/src/common/config.h @@ -1,22 +1,13 @@ /* CONFIG.h - Lumiera configuration system - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/configentry.c b/src/common/configentry.c index ca74e083f..49ed0b269 100644 --- a/src/common/configentry.c +++ b/src/common/configentry.c @@ -1,24 +1,15 @@ /* Configentry - single entries from configfiles - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file configentry.c diff --git a/src/common/configentry.h b/src/common/configentry.h index 8a7eb0682..23ec6d701 100644 --- a/src/common/configentry.h +++ b/src/common/configentry.h @@ -1,22 +1,13 @@ /* CONFIGENTRY.h - single entries from configfiles - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/configfacade.cpp b/src/common/configfacade.cpp index de5e6e049..fbb818826 100644 --- a/src/common/configfacade.cpp +++ b/src/common/configfacade.cpp @@ -1,24 +1,15 @@ /* ConfigFacade - C++ convenience wrapper and startup of the config system - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file configfacade.cpp diff --git a/src/common/configitem.c b/src/common/configitem.c index 0fe3cbd6d..3530955b0 100644 --- a/src/common/configitem.c +++ b/src/common/configitem.c @@ -1,23 +1,14 @@ /* Configitem - generalised hierarchy of configuration items - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter Simeon Voelkel - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/configitem.h b/src/common/configitem.h index dd0784164..7ea72c926 100644 --- a/src/common/configitem.h +++ b/src/common/configitem.h @@ -1,22 +1,13 @@ /* CONFIGITEM.h - generalised hierarchy of configuration items - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/display-interface-proxy.cpp b/src/common/display-interface-proxy.cpp index 24a660205..65a2af562 100644 --- a/src/common/display-interface-proxy.cpp +++ b/src/common/display-interface-proxy.cpp @@ -1,24 +1,15 @@ /* Display(Proxy) - service providing access to a display for outputting frames - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ diff --git a/src/common/guifacade.cpp b/src/common/guifacade.cpp index 02e3259df..848ccbcca 100644 --- a/src/common/guifacade.cpp +++ b/src/common/guifacade.cpp @@ -1,24 +1,15 @@ /* GuiFacade - access point for communicating with the Lumiera GTK GUI - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file guifacade.cpp diff --git a/src/common/instancehandle.hpp b/src/common/instancehandle.hpp index b95b677a7..906357539 100644 --- a/src/common/instancehandle.hpp +++ b/src/common/instancehandle.hpp @@ -1,22 +1,13 @@ /* INSTANCEHANDLE.hpp - automatically handling interface lifecycle - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/integration/common-services.cpp b/src/common/integration/common-services.cpp index 79f3afda2..cd205f491 100644 --- a/src/common/integration/common-services.cpp +++ b/src/common/integration/common-services.cpp @@ -1,24 +1,15 @@ /* CommonServices - integrate some library facilities with common system services - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file common-services.cpp diff --git a/src/common/interface-descriptor.h b/src/common/interface-descriptor.h index d29e5d565..2ffc720a8 100644 --- a/src/common/interface-descriptor.h +++ b/src/common/interface-descriptor.h @@ -1,22 +1,13 @@ /* INTERFACE-DESCRIPTOR.h - Metadata interface for Lumiera interfaces - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/interface.c b/src/common/interface.c index 6608ed56d..8b8481bc9 100644 --- a/src/common/interface.c +++ b/src/common/interface.c @@ -1,24 +1,15 @@ /* Interface - Lumiera interface handling - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file interface.c diff --git a/src/common/interface.h b/src/common/interface.h index b687e4139..1a985a645 100644 --- a/src/common/interface.h +++ b/src/common/interface.h @@ -1,22 +1,13 @@ /* INTERFACE.h - Lumiera interface macros and structures - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/interfaceregistry.c b/src/common/interfaceregistry.c index 73a734f45..d7444f83f 100644 --- a/src/common/interfaceregistry.c +++ b/src/common/interfaceregistry.c @@ -1,24 +1,15 @@ /* InterfaceRegistry - registry for extension points - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file interfaceregistry.c diff --git a/src/common/interfaceregistry.h b/src/common/interfaceregistry.h index 3c305353f..fb17f41c4 100644 --- a/src/common/interfaceregistry.h +++ b/src/common/interfaceregistry.h @@ -1,22 +1,13 @@ /* INTERFACEREGISTRY.h - Lumiera interface registry - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/notification-interface-proxy.cpp b/src/common/notification-interface-proxy.cpp index 1c9cef9dc..a6ffe13a4 100644 --- a/src/common/notification-interface-proxy.cpp +++ b/src/common/notification-interface-proxy.cpp @@ -1,24 +1,15 @@ /* Notification(Proxy) - public service to push information into the GUI - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ diff --git a/src/common/option.cpp b/src/common/option.cpp index 9672d5f14..d8404bd50 100644 --- a/src/common/option.cpp +++ b/src/common/option.cpp @@ -1,24 +1,15 @@ /* Option - handle cmdline for starting the Lumiera application - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file option.cpp diff --git a/src/common/option.hpp b/src/common/option.hpp index a03a7688a..045db9082 100644 --- a/src/common/option.hpp +++ b/src/common/option.hpp @@ -1,22 +1,13 @@ /* OPTION.hpp - handle cmdline for starting the Lumiera application - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/plugin-dynlib.c b/src/common/plugin-dynlib.c index 018e7d344..56fe57c2f 100644 --- a/src/common/plugin-dynlib.c +++ b/src/common/plugin-dynlib.c @@ -1,24 +1,15 @@ /* PluginDynlib - Lumiera Plugin loader for dynamic libraries - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file plugin-dynlib.c diff --git a/src/common/plugin.c b/src/common/plugin.c index 12aaa6f8f..aecd13f6f 100644 --- a/src/common/plugin.c +++ b/src/common/plugin.c @@ -1,24 +1,15 @@ /* Plugin - Lumiera Plugin loader implementation - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file plugin.c diff --git a/src/common/plugin.h b/src/common/plugin.h index a5df05ab2..6301ffaaa 100644 --- a/src/common/plugin.h +++ b/src/common/plugin.h @@ -1,22 +1,13 @@ /* PLUGIN.h - Plugin loader - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/query.hpp b/src/common/query.hpp index 6742ad8ad..3847244a0 100644 --- a/src/common/query.hpp +++ b/src/common/query.hpp @@ -1,22 +1,13 @@ /* QUERY.hpp - interface for generic queries - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/query/config-rules.cpp b/src/common/query/config-rules.cpp index 07ad99bc7..3dc007c10 100644 --- a/src/common/query/config-rules.cpp +++ b/src/common/query/config-rules.cpp @@ -2,24 +2,15 @@ /* ConfigRules - interface for rule based configuration - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config-rules.cpp diff --git a/src/common/query/defs-manager-impl.hpp b/src/common/query/defs-manager-impl.hpp index eb0aab89d..1ac00482e 100644 --- a/src/common/query/defs-manager-impl.hpp +++ b/src/common/query/defs-manager-impl.hpp @@ -1,22 +1,13 @@ /* DEFS-MANAGER-IMPL.h - access to preconfigured default objects and definitions - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/query/defs-manager.hpp b/src/common/query/defs-manager.hpp index 00bc7fd4a..eadae5bd6 100644 --- a/src/common/query/defs-manager.hpp +++ b/src/common/query/defs-manager.hpp @@ -1,22 +1,13 @@ /* DEFS-MANAGER.hpp - access to preconfigured default objects and definitions - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/query/defs-registry.hpp b/src/common/query/defs-registry.hpp index e694636df..810fc378d 100644 --- a/src/common/query/defs-registry.hpp +++ b/src/common/query/defs-registry.hpp @@ -1,22 +1,13 @@ /* DEFS-REGISTRY.hpp - implementation of the default object store - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/query/query-resolver.cpp b/src/common/query/query-resolver.cpp index 358414a5f..dd568acb1 100644 --- a/src/common/query/query-resolver.cpp +++ b/src/common/query/query-resolver.cpp @@ -1,24 +1,15 @@ /* QueryResolver - interface for discovering contents of a scope - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-resolver.cpp diff --git a/src/common/query/query-resolver.hpp b/src/common/query/query-resolver.hpp index 0a6f2759d..93a43aae9 100644 --- a/src/common/query/query-resolver.hpp +++ b/src/common/query/query-resolver.hpp @@ -1,22 +1,13 @@ /* QUERY-RESOLVER.hpp - framework for resolving generic queries - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/subsys.cpp b/src/common/subsys.cpp index 287dfcfd4..7ce87512b 100644 --- a/src/common/subsys.cpp +++ b/src/common/subsys.cpp @@ -1,24 +1,15 @@ /* Subsys - interface for describing an application part to be handled by main() - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file subsys.cpp diff --git a/src/common/subsys.hpp b/src/common/subsys.hpp index f1a4ec794..a9c50d3b5 100644 --- a/src/common/subsys.hpp +++ b/src/common/subsys.hpp @@ -1,22 +1,13 @@ /* SUBSYS.hpp - interface for describing an application part to be handled by main() - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/subsystem-runner.hpp b/src/common/subsystem-runner.hpp index 01728ed89..a509093b0 100644 --- a/src/common/subsystem-runner.hpp +++ b/src/common/subsystem-runner.hpp @@ -1,22 +1,13 @@ /* SUBSYSTEMRUNNER.hpp - helper for controlling execution of several dependent subsystems - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/common/ui-protocol.cpp b/src/common/ui-protocol.cpp index 42231cfc6..9b38da183 100644 --- a/src/common/ui-protocol.cpp +++ b/src/common/ui-protocol.cpp @@ -1,24 +1,15 @@ /* UiProtocol - magic keys used for communication with the Lumiera UI - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-protocol.cpp diff --git a/src/doxygen.dox b/src/doxygen.dox index 2e3104a7c..efd738f5c 100644 --- a/src/doxygen.dox +++ b/src/doxygen.dox @@ -2,9 +2,9 @@ DOXYGEN.dox - font page for the Doxygen API documentation - Copyright (C) Lumiera.org - 2013, Hermann Vosseler - Christian Thaeter + Copyright (C) + 2008, Christian Thaeter + 2013, Hermann Vosseler This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/src/include/config-facade.h b/src/include/config-facade.h index b00b645f0..c506128f4 100644 --- a/src/include/config-facade.h +++ b/src/include/config-facade.h @@ -1,22 +1,13 @@ /* CONFIGFACADE - C++ convenience wrapper and startup of the config system - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/display-facade.h b/src/include/display-facade.h index e0e0af5ec..37bc4c4a6 100644 --- a/src/include/display-facade.h +++ b/src/include/display-facade.h @@ -1,22 +1,13 @@ /* DISPLAY-FACADE.h - accessing a display for outputting frames - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/display-handles.h b/src/include/display-handles.h index 4e72a6bdd..eefc6f0fa 100644 --- a/src/include/display-handles.h +++ b/src/include/display-handles.h @@ -1,22 +1,13 @@ /* DISPLAY-HANDLES.h - opaque handle types for playback and display - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/dummy-player-facade.h b/src/include/dummy-player-facade.h index c6e21b70c..3d22bca6a 100644 --- a/src/include/dummy-player-facade.h +++ b/src/include/dummy-player-facade.h @@ -1,22 +1,13 @@ /* DUMMY-PLAYER-FACADE.h - access point to a dummy test player - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/gui-notification-facade.h b/src/include/gui-notification-facade.h index ac095b6b3..7ff5b7f87 100644 --- a/src/include/gui-notification-facade.h +++ b/src/include/gui-notification-facade.h @@ -1,22 +1,13 @@ /* GUI-NOTIFICATION-FACADE.h - access point for pushing information into the GUI - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/interfaceproxy.hpp b/src/include/interfaceproxy.hpp index c912c655b..f9d7e2c3a 100644 --- a/src/include/interfaceproxy.hpp +++ b/src/include/interfaceproxy.hpp @@ -1,22 +1,13 @@ /* INTERFACEPROXY - definition of forwarding proxies for the facade interfaces - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/lifecycle.h b/src/include/lifecycle.h index 342e07207..6de185328 100644 --- a/src/include/lifecycle.h +++ b/src/include/lifecycle.h @@ -1,22 +1,13 @@ /* LIFECYCLE.h - interface for registering and triggering lifecycle callbacks - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/limits.hpp b/src/include/limits.hpp index a0bcdb855..96d62a951 100644 --- a/src/include/limits.hpp +++ b/src/include/limits.hpp @@ -1,22 +1,13 @@ /* LIMITS.hpp - hard wired safety limits - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/logging.h b/src/include/logging.h index fe25167ed..9386f48be 100644 --- a/src/include/logging.h +++ b/src/include/logging.h @@ -1,23 +1,14 @@ /* logging.h - Configure basic nobug logging - Copyright (C) Lumiera.org - 2008, 2009 Christian Thaeter - Hermann Vosseler + Copyright (C) + 2008, 2009 Christian Thaeter + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/play-facade.hpp b/src/include/play-facade.hpp index 9960abf81..d4a768f7b 100644 --- a/src/include/play-facade.hpp +++ b/src/include/play-facade.hpp @@ -1,22 +1,13 @@ /* PLAYER-FACADE.h - access point to the Lumiera player subsystem - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/session-command-facade.h b/src/include/session-command-facade.h index 1f07a2188..f586bd0e3 100644 --- a/src/include/session-command-facade.h +++ b/src/include/session-command-facade.h @@ -1,22 +1,13 @@ /* SESSION-COMMAND-FACADE.h - access point for invoking commands on the session - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/include/ui-protocol.hpp b/src/include/ui-protocol.hpp index 9166dc5ac..15ba47bd6 100644 --- a/src/include/ui-protocol.hpp +++ b/src/include/ui-protocol.hpp @@ -1,22 +1,13 @@ /* UI-PROTOCOL.h - magic keys used for communication with the Lumiera UI - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/access-casted-o.hpp b/src/lib/access-casted-o.hpp index dcebac3f1..d933591c7 100644 --- a/src/lib/access-casted-o.hpp +++ b/src/lib/access-casted-o.hpp @@ -1,22 +1,13 @@ /* ACCESS-CASTED.hpp - util template to access a value using conversion or cast as appropriate - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/access-casted.hpp b/src/lib/access-casted.hpp index 66192c49d..ef4e32774 100644 --- a/src/lib/access-casted.hpp +++ b/src/lib/access-casted.hpp @@ -1,22 +1,13 @@ /* ACCESS-CASTED.hpp - util template to access a value using conversion or cast as appropriate - Copyright (C) Lumiera.org - 2008, 2015 Hermann Vosseler + Copyright (C) + 2008, 2015 Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/allocation-cluster.cpp b/src/lib/allocation-cluster.cpp index 929231772..290e0b160 100644 --- a/src/lib/allocation-cluster.cpp +++ b/src/lib/allocation-cluster.cpp @@ -1,24 +1,15 @@ /* AllocationCluster - allocating and owning a pile of objects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file allocation-cluster.cpp diff --git a/src/lib/allocation-cluster.hpp b/src/lib/allocation-cluster.hpp index b0acaa182..e71752ced 100644 --- a/src/lib/allocation-cluster.hpp +++ b/src/lib/allocation-cluster.hpp @@ -1,22 +1,13 @@ /* ALLOCATION-CLUSTER.hpp - allocating and owning a pile of objects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/allocator-handle.hpp b/src/lib/allocator-handle.hpp index ce66b3381..00c787724 100644 --- a/src/lib/allocator-handle.hpp +++ b/src/lib/allocator-handle.hpp @@ -1,22 +1,13 @@ /* ALLOCATOR-HANDLE.hpp - front-end handle for custom allocation schemes - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/binary-search.hpp b/src/lib/binary-search.hpp index 28b965863..b85c11148 100644 --- a/src/lib/binary-search.hpp +++ b/src/lib/binary-search.hpp @@ -1,22 +1,13 @@ /* BINARY-SEARCH.hpp - generic search over continuous domain with a probe predicate - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/builder-qualifier-support.hpp b/src/lib/builder-qualifier-support.hpp index ca8c6b895..5513f7cc8 100644 --- a/src/lib/builder-qualifier-support.hpp +++ b/src/lib/builder-qualifier-support.hpp @@ -1,22 +1,13 @@ /* BUILDER-QUALIFIER-SUPPORT.hpp - accept arbitrary qualifier terms for builder functions - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/call-queue.hpp b/src/lib/call-queue.hpp index 3d046e305..93aac747d 100644 --- a/src/lib/call-queue.hpp +++ b/src/lib/call-queue.hpp @@ -1,22 +1,13 @@ /* CALL-QUEUE.hpp - a queue to dispatch bound function invocations into another thread - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/cmdline.cpp b/src/lib/cmdline.cpp index 45dc63504..a86e85728 100644 --- a/src/lib/cmdline.cpp +++ b/src/lib/cmdline.cpp @@ -1,24 +1,15 @@ /* Cmdline - abstraction of the usual commandline, a sequence of strings - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file cmdline.cpp diff --git a/src/lib/cmdline.hpp b/src/lib/cmdline.hpp index 70a8eb8e5..ddb890144 100644 --- a/src/lib/cmdline.hpp +++ b/src/lib/cmdline.hpp @@ -1,22 +1,13 @@ /* CMDLINE.hpp - abstraction of the usual commandline, a sequence of strings - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/del-stash.hpp b/src/lib/del-stash.hpp index 39e274aab..b09408264 100644 --- a/src/lib/del-stash.hpp +++ b/src/lib/del-stash.hpp @@ -1,22 +1,13 @@ /* DEL-STASH.hpp - collect and execute deleter functions - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/depend-inject.hpp b/src/lib/depend-inject.hpp index 25259afe7..a13d243b0 100644 --- a/src/lib/depend-inject.hpp +++ b/src/lib/depend-inject.hpp @@ -1,22 +1,13 @@ /* DEPEND-INJECT.hpp - managing the lifecycle of singletons and dependencies - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/depend.hpp b/src/lib/depend.hpp index 34b3e93e2..0642ce03a 100644 --- a/src/lib/depend.hpp +++ b/src/lib/depend.hpp @@ -1,23 +1,14 @@ /* DEPEND.hpp - access point to singletons and dependencies - Copyright (C) Lumiera.org - 2013, Hermann Vosseler - 2018, Hermann Vosseler + Copyright (C) + 2013, Hermann Vosseler + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diagnostic-context.hpp b/src/lib/diagnostic-context.hpp index c83feb1ef..d15ac645d 100644 --- a/src/lib/diagnostic-context.hpp +++ b/src/lib/diagnostic-context.hpp @@ -1,22 +1,13 @@ /* DIAGNOSTIC-CONTEXT.hpp - thread local stack for explicitly collecting diagnostic context info - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/diff-language.hpp b/src/lib/diff/diff-language.hpp index 2fb81b4a0..9f2f51aba 100644 --- a/src/lib/diff/diff-language.hpp +++ b/src/lib/diff/diff-language.hpp @@ -1,22 +1,13 @@ /* DIFF-LANGUAGE.hpp - language to describe differences in linearised form - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/diff-mutable.hpp b/src/lib/diff/diff-mutable.hpp index d01c13794..6dcf0d2a1 100644 --- a/src/lib/diff/diff-mutable.hpp +++ b/src/lib/diff/diff-mutable.hpp @@ -1,22 +1,13 @@ /* DIFF-MUTABLE.hpp - interface for data structures mutable through diff message - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/diff.cpp b/src/lib/diff/diff.cpp index 1dbe01f50..2d50442fe 100644 --- a/src/lib/diff/diff.cpp +++ b/src/lib/diff/diff.cpp @@ -1,24 +1,15 @@ /* Diff - common helpers for the diff handling framework - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff.cpp diff --git a/src/lib/diff/gen-node.cpp b/src/lib/diff/gen-node.cpp index 8806cd1f4..710d62a1c 100644 --- a/src/lib/diff/gen-node.cpp +++ b/src/lib/diff/gen-node.cpp @@ -1,24 +1,15 @@ /* GenNode - generic node element for tree like data representation - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file gen-node.cpp diff --git a/src/lib/diff/gen-node.hpp b/src/lib/diff/gen-node.hpp index 649b82afd..a38d3b6ee 100644 --- a/src/lib/diff/gen-node.hpp +++ b/src/lib/diff/gen-node.hpp @@ -1,22 +1,13 @@ /* GEN-NODE.hpp - generic node element for tree like data representation - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/index-table.hpp b/src/lib/diff/index-table.hpp index c96df8a26..cd729ed14 100644 --- a/src/lib/diff/index-table.hpp +++ b/src/lib/diff/index-table.hpp @@ -1,22 +1,13 @@ /* INDEX-TABLE.hpp - helper for lookup and membership check of sequence like data - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/list-diff-application.hpp b/src/lib/diff/list-diff-application.hpp index 15f3fc4dc..38d64bbf2 100644 --- a/src/lib/diff/list-diff-application.hpp +++ b/src/lib/diff/list-diff-application.hpp @@ -1,22 +1,13 @@ /* LIST-DIFF-APPLICATION.hpp - consume and apply a list diff - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/list-diff-detector.hpp b/src/lib/diff/list-diff-detector.hpp index 5e0bc394b..a53e5099c 100644 --- a/src/lib/diff/list-diff-detector.hpp +++ b/src/lib/diff/list-diff-detector.hpp @@ -1,22 +1,13 @@ /* LIST-DIFF-DETECTOR.hpp - language to describe differences in linearised form - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/list-diff.hpp b/src/lib/diff/list-diff.hpp index 3b90d61cc..6156b3221 100644 --- a/src/lib/diff/list-diff.hpp +++ b/src/lib/diff/list-diff.hpp @@ -1,22 +1,13 @@ /* LIST-DIFF.hpp - language to describe differences between list like sequences - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/mutation-message.hpp b/src/lib/diff/mutation-message.hpp index 049e25695..05a93c572 100644 --- a/src/lib/diff/mutation-message.hpp +++ b/src/lib/diff/mutation-message.hpp @@ -1,22 +1,13 @@ /* MUTATION-MESSAGE.hpp - message to cause changes to generic model elements - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/record.hpp b/src/lib/diff/record.hpp index df0262416..d3a366dd6 100644 --- a/src/lib/diff/record.hpp +++ b/src/lib/diff/record.hpp @@ -1,22 +1,13 @@ /* RECORD.hpp - collection to represent object-like data - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/test-mutation-target.hpp b/src/lib/diff/test-mutation-target.hpp index 01ab27cb6..f1de4ec29 100644 --- a/src/lib/diff/test-mutation-target.hpp +++ b/src/lib/diff/test-mutation-target.hpp @@ -1,22 +1,13 @@ /* TEST-MUTATION-TARGET.hpp - diagnostic helper for TreeMutator bindings - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-diff-application.hpp b/src/lib/diff/tree-diff-application.hpp index 843964554..373ec4f7b 100644 --- a/src/lib/diff/tree-diff-application.hpp +++ b/src/lib/diff/tree-diff-application.hpp @@ -1,22 +1,13 @@ /* TREE-DIFF-APPLICATION.hpp - consume and apply a tree diff - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-diff-traits.hpp b/src/lib/diff/tree-diff-traits.hpp index 901ddfa6d..d755f4d23 100644 --- a/src/lib/diff/tree-diff-traits.hpp +++ b/src/lib/diff/tree-diff-traits.hpp @@ -1,22 +1,13 @@ /* TREE-DIFF-TRAITS.hpp - definitions to control tree mutator binding - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-diff.cpp b/src/lib/diff/tree-diff.cpp index cf3de9ffd..69e8e9932 100644 --- a/src/lib/diff/tree-diff.cpp +++ b/src/lib/diff/tree-diff.cpp @@ -1,24 +1,15 @@ /* TreeDiff - implementation of diff application to opaque data - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tree-diff.cpp diff --git a/src/lib/diff/tree-diff.hpp b/src/lib/diff/tree-diff.hpp index d8ad601b0..44d53d4b3 100644 --- a/src/lib/diff/tree-diff.hpp +++ b/src/lib/diff/tree-diff.hpp @@ -1,22 +1,13 @@ /* TREE-DIFF.hpp - language to describe differences in hierarchical data structures - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-mutator-attribute-binding.hpp b/src/lib/diff/tree-mutator-attribute-binding.hpp index 983fddef7..260cb532e 100644 --- a/src/lib/diff/tree-mutator-attribute-binding.hpp +++ b/src/lib/diff/tree-mutator-attribute-binding.hpp @@ -1,22 +1,13 @@ /* TREE-MUTATOR-ATTRIBUTE-BINDING.hpp - diff::TreeMutator implementation building block - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-mutator-collection-binding.hpp b/src/lib/diff/tree-mutator-collection-binding.hpp index 015a2a292..2f5bfad36 100644 --- a/src/lib/diff/tree-mutator-collection-binding.hpp +++ b/src/lib/diff/tree-mutator-collection-binding.hpp @@ -1,22 +1,13 @@ /* TREE-MUTATOR-COLLECTION-BINDING.hpp - diff::TreeMutator implementation building block - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-mutator-diffmutable-binding.hpp b/src/lib/diff/tree-mutator-diffmutable-binding.hpp index f0e799e52..279add1bc 100644 --- a/src/lib/diff/tree-mutator-diffmutable-binding.hpp +++ b/src/lib/diff/tree-mutator-diffmutable-binding.hpp @@ -1,22 +1,13 @@ /* TREE-MUTATOR-DIFFMUTABLE-BINDING.hpp - default configuration to attach a collection of DiffMutable objects - Copyright (C) Lumiera.org - 2021, Hermann Vosseler + Copyright (C) + 2021, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-mutator-gen-node-binding.hpp b/src/lib/diff/tree-mutator-gen-node-binding.hpp index 3292ab86d..161fffefc 100644 --- a/src/lib/diff/tree-mutator-gen-node-binding.hpp +++ b/src/lib/diff/tree-mutator-gen-node-binding.hpp @@ -1,22 +1,13 @@ /* TREE-MUTATOR-GEN-NODE-BINDING.hpp - diff::TreeMutator implementation building block - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-mutator-listener-binding.hpp b/src/lib/diff/tree-mutator-listener-binding.hpp index bed507f06..93919e393 100644 --- a/src/lib/diff/tree-mutator-listener-binding.hpp +++ b/src/lib/diff/tree-mutator-listener-binding.hpp @@ -1,22 +1,13 @@ /* TREE-MUTATOR-LISTENER-BINDING.hpp - decorator for TreeMutator to attach change listeners - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-mutator-noop-binding.hpp b/src/lib/diff/tree-mutator-noop-binding.hpp index ca362d03d..eb563ab6c 100644 --- a/src/lib/diff/tree-mutator-noop-binding.hpp +++ b/src/lib/diff/tree-mutator-noop-binding.hpp @@ -1,22 +1,13 @@ /* TREE-MUTATOR-NOOP-BINDING.hpp - diff::TreeMutator implementation building block - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/diff/tree-mutator.hpp b/src/lib/diff/tree-mutator.hpp index a6829c161..7124691b1 100644 --- a/src/lib/diff/tree-mutator.hpp +++ b/src/lib/diff/tree-mutator.hpp @@ -1,22 +1,13 @@ /* TREE-MUTATOR.hpp - flexible binding to map generic tree changing operations - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/dot-gen.hpp b/src/lib/dot-gen.hpp index 146adb6e9..fc77c2597 100644 --- a/src/lib/dot-gen.hpp +++ b/src/lib/dot-gen.hpp @@ -1,22 +1,13 @@ /* DOT-GEN.hpp - DSL to generate Graphviz-DOT code - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/element-tracker.hpp b/src/lib/element-tracker.hpp index 9f08a4c68..6c865cd5a 100644 --- a/src/lib/element-tracker.hpp +++ b/src/lib/element-tracker.hpp @@ -1,22 +1,13 @@ /* ELEMENT-TRACKER.hpp - registry for tracking instances automatically - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/error-exception.cpp b/src/lib/error-exception.cpp index 440e342f5..74669ddfe 100644 --- a/src/lib/error-exception.cpp +++ b/src/lib/error-exception.cpp @@ -1,24 +1,15 @@ /* ERROR-EXCEPTION - Lumiera exception classes - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file error-exception.cpp diff --git a/src/lib/error-state.c b/src/lib/error-state.c index 229f8ad75..d33013199 100644 --- a/src/lib/error-state.c +++ b/src/lib/error-state.c @@ -1,24 +1,15 @@ /* ERROR-STATE - Lumiera C error flag implementation - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file error-state.c diff --git a/src/lib/error.h b/src/lib/error.h index 6d1bf2485..c7bd549e4 100644 --- a/src/lib/error.h +++ b/src/lib/error.h @@ -1,22 +1,13 @@ /* ERROR.h - Lumiera Error handling interface (C-style) - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/error.hpp b/src/lib/error.hpp index a7ca360a0..8ad0bb0b8 100644 --- a/src/lib/error.hpp +++ b/src/lib/error.hpp @@ -1,22 +1,13 @@ /* ERROR.hpp - Lumiera Exception Interface (C++) - Copyright (C) Lumiera.org + Copyright (C) 2008,2010 Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/format-cout.hpp b/src/lib/format-cout.hpp index 3b703ca0d..be3619a83 100644 --- a/src/lib/format-cout.hpp +++ b/src/lib/format-cout.hpp @@ -1,22 +1,13 @@ /* FORMAT-COUT.hpp - use custom string conversions in stream output - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/format-obj.cpp b/src/lib/format-obj.cpp index b67851152..b681ba7ea 100644 --- a/src/lib/format-obj.cpp +++ b/src/lib/format-obj.cpp @@ -1,24 +1,15 @@ /* FormatObj - simple means to display an object - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file format-obj.cpp ** Some implementation helpers for simple object display. diff --git a/src/lib/format-obj.hpp b/src/lib/format-obj.hpp index ba49bbc78..b59342c63 100644 --- a/src/lib/format-obj.hpp +++ b/src/lib/format-obj.hpp @@ -1,22 +1,13 @@ /* FORMAT-OBJ.hpp - simple means to display an object - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/format-string.cpp b/src/lib/format-string.cpp index 25ec9abed..9142bc050 100644 --- a/src/lib/format-string.cpp +++ b/src/lib/format-string.cpp @@ -1,24 +1,15 @@ /* FormatString - string template formatting based on boost::format - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file format-string.cpp ** Implementation for printf-style formatting, based on boost::format. diff --git a/src/lib/format-string.hpp b/src/lib/format-string.hpp index 607253f62..d98edf6be 100644 --- a/src/lib/format-string.hpp +++ b/src/lib/format-string.hpp @@ -1,22 +1,13 @@ /* FORMAT-STRING.hpp - string template formatting based on boost::format - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/format-util.hpp b/src/lib/format-util.hpp index acacc2b1a..b77c178ca 100644 --- a/src/lib/format-util.hpp +++ b/src/lib/format-util.hpp @@ -1,22 +1,13 @@ /* FORMAT-UTIL.hpp - helpers for formatting and diagnostics - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/frameid.hpp b/src/lib/frameid.hpp index 63804a192..da1270b5e 100644 --- a/src/lib/frameid.hpp +++ b/src/lib/frameid.hpp @@ -1,22 +1,13 @@ /* FRAMEID.hpp - distinct identification of a single data frame - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/gnuplot-gen.cpp b/src/lib/gnuplot-gen.cpp index 84387b6b4..dea2107d7 100644 --- a/src/lib/gnuplot-gen.cpp +++ b/src/lib/gnuplot-gen.cpp @@ -1,24 +1,15 @@ /* GnuplotGen - building blocks for simplified data visualisation via Gnuplot - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file gnuplot-gen.cpp diff --git a/src/lib/gnuplot-gen.hpp b/src/lib/gnuplot-gen.hpp index a30019473..26b0f3841 100644 --- a/src/lib/gnuplot-gen.hpp +++ b/src/lib/gnuplot-gen.hpp @@ -1,22 +1,13 @@ /* GNUPLOT-GEN.hpp - setup for simplified data visualisation via Gnuplot - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/handle.hpp b/src/lib/handle.hpp index 222faa1a7..560f02054 100644 --- a/src/lib/handle.hpp +++ b/src/lib/handle.hpp @@ -1,22 +1,13 @@ /* HANDLE.hpp - opaque handle to an implementation entity, automatically managing lifecycle - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/hash-fnv.c b/src/lib/hash-fnv.c index aad48343b..601840d71 100644 --- a/src/lib/hash-fnv.c +++ b/src/lib/hash-fnv.c @@ -1,11 +1,10 @@ /* HashFNV - FNV hash functions - adapted by Lumiera.org - 2010, 2011 Christian Thaeter - original by chongo /\oo/\ http://www.isthe.com/chongo/ + adapted for Lumiera + 2010, 2011 Christian Thaeter Please do not copyright this code. This code is in the public domain. @@ -19,7 +18,7 @@ Share and Enjoy! :-) -* *****************************************************/ +* *****************************************************************/ /** @file hash-fnv.c diff --git a/src/lib/hash-fnv.h b/src/lib/hash-fnv.h index 22ef4b57c..874f2ee8e 100644 --- a/src/lib/hash-fnv.h +++ b/src/lib/hash-fnv.h @@ -1,11 +1,10 @@ /* HASH-FNV.h - FNV hash functions - adapted by Lumiera.org - 2010, 2011 Christian Thaeter - original by chongo /\oo/\ http://www.isthe.com/chongo/ + adapted for Lumiera + 2010, 2011 Christian Thaeter Please do not copyright this code. This code is in the public domain. diff --git a/src/lib/hash-indexed.hpp b/src/lib/hash-indexed.hpp index e0b94b101..34a7983d7 100644 --- a/src/lib/hash-indexed.hpp +++ b/src/lib/hash-indexed.hpp @@ -1,22 +1,13 @@ /* HASH-INDEXED.hpp - generic hash based and typed ID - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/hash-standard.hpp b/src/lib/hash-standard.hpp index ec7dee107..5a2f04588 100644 --- a/src/lib/hash-standard.hpp +++ b/src/lib/hash-standard.hpp @@ -1,22 +1,13 @@ /* HASH-STANDARD.hpp - allow use both of std and boost hasher implementations - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/hash-value.h b/src/lib/hash-value.h index 6978fcfaa..26a6cfb85 100644 --- a/src/lib/hash-value.h +++ b/src/lib/hash-value.h @@ -1,22 +1,13 @@ /* HASH-VALUE.hpp - collection of tools and definitions for working with hashes - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/idi/entry-id.hpp b/src/lib/idi/entry-id.hpp index 24f4b6e36..172f16fb1 100644 --- a/src/lib/idi/entry-id.hpp +++ b/src/lib/idi/entry-id.hpp @@ -1,22 +1,13 @@ /* ENTRY-ID.hpp - plain symbolic and hash ID used for accounting - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/idi/genfunc.cpp b/src/lib/idi/genfunc.cpp index 5a626d434..b6a67850c 100644 --- a/src/lib/idi/genfunc.cpp +++ b/src/lib/idi/genfunc.cpp @@ -1,24 +1,15 @@ /* GenFunc - generic identification functions (raw) - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file genfunc.cpp diff --git a/src/lib/idi/genfunc.hpp b/src/lib/idi/genfunc.hpp index 1a408495b..49aeb028e 100644 --- a/src/lib/idi/genfunc.hpp +++ b/src/lib/idi/genfunc.hpp @@ -1,22 +1,13 @@ /* GENFUNC.hpp - generic identification functions - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/incidence-count.hpp b/src/lib/incidence-count.hpp index 8c46cebba..3c019cc00 100644 --- a/src/lib/incidence-count.hpp +++ b/src/lib/incidence-count.hpp @@ -1,22 +1,13 @@ /* INCIDENCE-COUNT.hpp - instrumentation helper to watch possibly multithreaded task activations - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/index-iter.hpp b/src/lib/index-iter.hpp index 51b20f051..be5975c44 100644 --- a/src/lib/index-iter.hpp +++ b/src/lib/index-iter.hpp @@ -1,22 +1,13 @@ /* INDEX-ITER.hpp - iterator with indexed random-access to referred container - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/integral.hpp b/src/lib/integral.hpp index c22564ddc..0f1df0584 100644 --- a/src/lib/integral.hpp +++ b/src/lib/integral.hpp @@ -1,22 +1,13 @@ /* INTEGRAL.hpp - there is nothing like one - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/ios-savepoint.hpp b/src/lib/ios-savepoint.hpp index 14e334def..3ae0ec796 100644 --- a/src/lib/ios-savepoint.hpp +++ b/src/lib/ios-savepoint.hpp @@ -1,22 +1,13 @@ /* IOS-SAVEPOINT.hpp - capture and restore std::ostream format settings - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/iter-adapter-ptr-deref.hpp b/src/lib/iter-adapter-ptr-deref.hpp index 6acf0f679..3f87cbb5a 100644 --- a/src/lib/iter-adapter-ptr-deref.hpp +++ b/src/lib/iter-adapter-ptr-deref.hpp @@ -1,22 +1,13 @@ /* ITER-ADAPTER-PTR-DEREF.hpp - wrapping iterator to dereference pointers automatically - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/iter-adapter-stl.hpp b/src/lib/iter-adapter-stl.hpp index cdeb411c9..bf595be66 100644 --- a/src/lib/iter-adapter-stl.hpp +++ b/src/lib/iter-adapter-stl.hpp @@ -1,22 +1,13 @@ /* ITER-ADAPTER-STL.hpp - helpers for building simple forward iterators - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/iter-adapter.hpp b/src/lib/iter-adapter.hpp index 1a0474cd3..c87de30eb 100644 --- a/src/lib/iter-adapter.hpp +++ b/src/lib/iter-adapter.hpp @@ -1,22 +1,13 @@ /* ITER-ADAPTER.hpp - helpers for building simple forward iterators - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/iter-chain-search.hpp b/src/lib/iter-chain-search.hpp index e87d7ad66..3e3d5ce94 100644 --- a/src/lib/iter-chain-search.hpp +++ b/src/lib/iter-chain-search.hpp @@ -1,22 +1,13 @@ /* ITER-CHAIN-SEARCH.hpp - chained search with backtracking based on (bidirectional) iterator - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/iter-cursor.hpp b/src/lib/iter-cursor.hpp index e358f0a71..3fba563c0 100644 --- a/src/lib/iter-cursor.hpp +++ b/src/lib/iter-cursor.hpp @@ -1,22 +1,13 @@ /* ITER-CURSOR.hpp - wrap bidirectional STL container iterators - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/iter-explorer.hpp b/src/lib/iter-explorer.hpp index ebb230c02..e1c91f2e9 100644 --- a/src/lib/iter-explorer.hpp +++ b/src/lib/iter-explorer.hpp @@ -1,22 +1,13 @@ /* ITER-EXPLORER.hpp - building blocks for iterator evaluation strategies - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/iter-source.hpp b/src/lib/iter-source.hpp index b3180766b..e0ea0e9fb 100644 --- a/src/lib/iter-source.hpp +++ b/src/lib/iter-source.hpp @@ -1,22 +1,13 @@ /* ITER-SOURCE.hpp - an interface to build an opaque iterator-based data source - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/iter-stack.hpp b/src/lib/iter-stack.hpp index 0e33ed15c..95218ee97 100644 --- a/src/lib/iter-stack.hpp +++ b/src/lib/iter-stack.hpp @@ -1,22 +1,13 @@ /* ITER-STACK.hpp - a stack which can be popped by iterating - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/itertools.hpp b/src/lib/itertools.hpp index bb5bd899b..32a10f989 100644 --- a/src/lib/itertools.hpp +++ b/src/lib/itertools.hpp @@ -1,22 +1,13 @@ /* ITERTOOLS.hpp - collection of tools for building and combining iterators - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/lazy-init.hpp b/src/lib/lazy-init.hpp index 58886ff4a..d6e817147 100644 --- a/src/lib/lazy-init.hpp +++ b/src/lib/lazy-init.hpp @@ -1,22 +1,13 @@ /* LAZY-INIT.hpp - a self-initialising functor - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/lifecycle.cpp b/src/lib/lifecycle.cpp index f42c5a6a4..656a297d8 100644 --- a/src/lib/lifecycle.cpp +++ b/src/lib/lifecycle.cpp @@ -1,24 +1,15 @@ /* Lifecycle - registering and triggering lifecycle callbacks - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file lifecycle.cpp diff --git a/src/lib/lifecycleregistry.hpp b/src/lib/lifecycleregistry.hpp index 5b9be4a10..df54ace06 100644 --- a/src/lib/lifecycleregistry.hpp +++ b/src/lib/lifecycleregistry.hpp @@ -1,23 +1,14 @@ /* LIFECYCLEREGISTRY.hpp - registry for application lifecycle callbacks - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/linked-elements.hpp b/src/lib/linked-elements.hpp index 080a7420f..73d0d6db4 100644 --- a/src/lib/linked-elements.hpp +++ b/src/lib/linked-elements.hpp @@ -1,22 +1,13 @@ /* LINKED-ELEMENTS.hpp - configurable intrusive single linked list template - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/llist.h b/src/lib/llist.h index 930aff908..28050c8fb 100644 --- a/src/lib/llist.h +++ b/src/lib/llist.h @@ -1,24 +1,14 @@ /* llist.h - simple intrusive cyclic double linked list - Copyright (C) - 2003, 2005 Christian Thaeter - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2003, 2005 Christian Thaeter + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ #ifndef LLIST_H diff --git a/src/lib/lockerror.c b/src/lib/lockerror.c index c1824a502..69f74e563 100644 --- a/src/lib/lockerror.c +++ b/src/lib/lockerror.c @@ -1,24 +1,15 @@ /* lockerror.c - error declarations for all locks (mutex, rwlocks, cond vars) - Copyright (C) Lumiera.org - 2010, Christian Thaeter + Copyright (C) + 2010, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file lockerror.c diff --git a/src/lib/lockerror.h b/src/lib/lockerror.h index ba88a3918..758ff017d 100644 --- a/src/lib/lockerror.h +++ b/src/lib/lockerror.h @@ -1,22 +1,13 @@ /* lockerror.h - error declarations for all locks (mutex, rwlocks, cond vars) - Copyright (C) Lumiera.org - 2010, Christian Thaeter + Copyright (C) + 2010, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/luid.c b/src/lib/luid.c index aa197a380..59bc72db1 100644 --- a/src/lib/luid.c +++ b/src/lib/luid.c @@ -1,24 +1,15 @@ /* LUID - Lumiera unique identifiers - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file luid.c diff --git a/src/lib/luid.h b/src/lib/luid.h index ffcd105dc..913effae9 100644 --- a/src/lib/luid.h +++ b/src/lib/luid.h @@ -1,22 +1,13 @@ /* LUID.h - Lumiera unique identifiers - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/configflags.hpp b/src/lib/meta/configflags.hpp index b2bcd336f..f0c1aa1ea 100644 --- a/src/lib/meta/configflags.hpp +++ b/src/lib/meta/configflags.hpp @@ -1,22 +1,13 @@ /* CONFIGFLAGS.hpp - Building classes based on configuration cases - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/duck-detector.hpp b/src/lib/meta/duck-detector.hpp index a3fef919f..673b48ccb 100644 --- a/src/lib/meta/duck-detector.hpp +++ b/src/lib/meta/duck-detector.hpp @@ -1,22 +1,13 @@ /* DUCK-DETECTOR.hpp - helpers for statically detecting properties of a type - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/function-closure.hpp b/src/lib/meta/function-closure.hpp index 9b6fa99bd..7c050cd18 100644 --- a/src/lib/meta/function-closure.hpp +++ b/src/lib/meta/function-closure.hpp @@ -1,22 +1,13 @@ /* FUNCTION-CLOSURE.hpp - metaprogramming tools for closing a function over given arguments - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/function-erasure.hpp b/src/lib/meta/function-erasure.hpp index 6f41e78aa..b45f9e638 100644 --- a/src/lib/meta/function-erasure.hpp +++ b/src/lib/meta/function-erasure.hpp @@ -1,22 +1,13 @@ /* FUNCTION-ERASURE.hpp - wrapping a functor object for inline storage while hiding the signature - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/function.hpp b/src/lib/meta/function.hpp index 6e6cdc27f..040309de1 100644 --- a/src/lib/meta/function.hpp +++ b/src/lib/meta/function.hpp @@ -1,22 +1,13 @@ /* FUNCTION.hpp - metaprogramming utilities for transforming function types - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/generator-combinations.hpp b/src/lib/meta/generator-combinations.hpp index bbb85ed0e..ca76faffe 100644 --- a/src/lib/meta/generator-combinations.hpp +++ b/src/lib/meta/generator-combinations.hpp @@ -1,22 +1,13 @@ /* GENERATOR-COMBINATIONS.hpp - generate combinations and variations - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/generator.hpp b/src/lib/meta/generator.hpp index fd0b01335..c273521fd 100644 --- a/src/lib/meta/generator.hpp +++ b/src/lib/meta/generator.hpp @@ -1,22 +1,13 @@ /* GENERATOR.hpp - metaprogramming utilities for generating classes and interfaces - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. ==================================================================== This code is heavily inspired by diff --git a/src/lib/meta/maybe-compare.hpp b/src/lib/meta/maybe-compare.hpp index 0cb56e408..dfe87c20c 100644 --- a/src/lib/meta/maybe-compare.hpp +++ b/src/lib/meta/maybe-compare.hpp @@ -1,22 +1,13 @@ /* MAYBE-COMPARE.hpp - guarded invocation of comparisons - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/no-instance.hpp b/src/lib/meta/no-instance.hpp index 8719b0c63..be626d206 100644 --- a/src/lib/meta/no-instance.hpp +++ b/src/lib/meta/no-instance.hpp @@ -1,22 +1,13 @@ /* NO-INSTANCE.hpp - marker for pure metaprogramming types - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/size-trait.hpp b/src/lib/meta/size-trait.hpp index 6eb7aaced..963ac3851 100644 --- a/src/lib/meta/size-trait.hpp +++ b/src/lib/meta/size-trait.hpp @@ -1,22 +1,13 @@ /* SIZE-TRAIT.hpp - helpers and definitions to deal with the size of some known types - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/trait-special.hpp b/src/lib/meta/trait-special.hpp index 3dc1d66a5..648dbeba8 100644 --- a/src/lib/meta/trait-special.hpp +++ b/src/lib/meta/trait-special.hpp @@ -1,22 +1,13 @@ /* TRAIT-SPECIAL.hpp - supplement, not so commonly used definitions and specialisations - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/trait.hpp b/src/lib/meta/trait.hpp index a5f6d1df7..c9013a6a3 100644 --- a/src/lib/meta/trait.hpp +++ b/src/lib/meta/trait.hpp @@ -1,22 +1,13 @@ /* TRAIT.hpp - type handling and type detection helpers - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/tuple-helper.hpp b/src/lib/meta/tuple-helper.hpp index 7cbd64d12..c7b371bd7 100644 --- a/src/lib/meta/tuple-helper.hpp +++ b/src/lib/meta/tuple-helper.hpp @@ -1,22 +1,13 @@ /* TUPLE-HELPER.hpp - metaprogramming utilities for type and data tuples - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/tuple-record-init.hpp b/src/lib/meta/tuple-record-init.hpp index 5ee885508..3742fd980 100644 --- a/src/lib/meta/tuple-record-init.hpp +++ b/src/lib/meta/tuple-record-init.hpp @@ -1,22 +1,13 @@ /* TUPLE-RECORD-INIT.hpp - adapter to construct tuple components from GenNode entries - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/typelist-manip.hpp b/src/lib/meta/typelist-manip.hpp index a5e02d51e..d8e933348 100644 --- a/src/lib/meta/typelist-manip.hpp +++ b/src/lib/meta/typelist-manip.hpp @@ -1,22 +1,13 @@ /* TYPELIST-MANIP.hpp - Utils for working with lists-of-types - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/typelist-util.hpp b/src/lib/meta/typelist-util.hpp index 490a1126a..cee935afe 100644 --- a/src/lib/meta/typelist-util.hpp +++ b/src/lib/meta/typelist-util.hpp @@ -1,22 +1,13 @@ /* TYPELIST-UTIL.hpp - simple helpers for working with lists-of-types - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/typelist.hpp b/src/lib/meta/typelist.hpp index ddb0c6f21..83c605225 100644 --- a/src/lib/meta/typelist.hpp +++ b/src/lib/meta/typelist.hpp @@ -1,22 +1,13 @@ /* TYPELIST.hpp - typelist meta programming facilities - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. ==================================================================== This code is heavily inspired by diff --git a/src/lib/meta/typeseq-util.hpp b/src/lib/meta/typeseq-util.hpp index f6c9effc2..54f1509c1 100644 --- a/src/lib/meta/typeseq-util.hpp +++ b/src/lib/meta/typeseq-util.hpp @@ -1,22 +1,13 @@ /* TYPESEQ-UTIL.hpp - basic metaprogramming utilities for type sequences - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/util.hpp b/src/lib/meta/util.hpp index ea654a311..1eeae75a7 100644 --- a/src/lib/meta/util.hpp +++ b/src/lib/meta/util.hpp @@ -1,22 +1,13 @@ /* UTIL.hpp - metaprogramming helpers and utilities - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/value-type-binding.hpp b/src/lib/meta/value-type-binding.hpp index d5e263a99..4d1c7dd6d 100644 --- a/src/lib/meta/value-type-binding.hpp +++ b/src/lib/meta/value-type-binding.hpp @@ -1,22 +1,13 @@ /* VALUE-TYPE-BINDING.hpp - control type variations for custom containers - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/variadic-helper.hpp b/src/lib/meta/variadic-helper.hpp index d3f77902d..c3ab5087f 100644 --- a/src/lib/meta/variadic-helper.hpp +++ b/src/lib/meta/variadic-helper.hpp @@ -1,22 +1,13 @@ /* VARIADIC-HELPER.hpp - metaprogramming utilities for parameter- and type sequences - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/meta/virtual-copy-support.hpp b/src/lib/meta/virtual-copy-support.hpp index 590798669..44b9a6f75 100644 --- a/src/lib/meta/virtual-copy-support.hpp +++ b/src/lib/meta/virtual-copy-support.hpp @@ -1,22 +1,13 @@ /* VIRTUAL-COPY-SUPPORT.hpp - helper to support copying of erased sub-types - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/multifact.hpp b/src/lib/multifact.hpp index aefd92f0f..de33aec77 100644 --- a/src/lib/multifact.hpp +++ b/src/lib/multifact.hpp @@ -1,22 +1,13 @@ /* MULTIFACT.hpp - flexible family-of-object factory template - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/mutex.c b/src/lib/mutex.c index 11977c372..1597a0c95 100644 --- a/src/lib/mutex.c +++ b/src/lib/mutex.c @@ -1,22 +1,13 @@ /* mutex.c - mutex - Copyright (C) Lumiera.org - 2008, 2009, Christian Thaeter + Copyright (C) + 2008, 2009, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ #include "lib/mutex.h" diff --git a/src/lib/mutex.h b/src/lib/mutex.h index cf51226b9..78ff576a6 100644 --- a/src/lib/mutex.h +++ b/src/lib/mutex.h @@ -1,22 +1,13 @@ /* - mutex.h - mutal exclusion locking + mutex.h - mutual exclusion locking - Copyright (C) Lumiera.org - 2008, 2009, Christian Thaeter + Copyright (C) + 2008, 2009, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ #ifndef LUMIERA_MUTEX_H diff --git a/src/lib/nobug-init.cpp b/src/lib/nobug-init.cpp index 0c222275b..4b65d1b30 100644 --- a/src/lib/nobug-init.cpp +++ b/src/lib/nobug-init.cpp @@ -1,24 +1,15 @@ /* NoBugInit - NoBug static initialisation and definition of logging vars - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file nobug-init.cpp diff --git a/src/lib/nobug-init.hpp b/src/lib/nobug-init.hpp index 8d340b855..5d82dab15 100644 --- a/src/lib/nobug-init.hpp +++ b/src/lib/nobug-init.hpp @@ -2,22 +2,13 @@ NOBUG-INIT.hpp - pull up NoBug automagically in static initialisation - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/nobug-resource-handle-context.hpp b/src/lib/nobug-resource-handle-context.hpp index 8ad11549c..3d1d70188 100644 --- a/src/lib/nobug-resource-handle-context.hpp +++ b/src/lib/nobug-resource-handle-context.hpp @@ -1,22 +1,13 @@ /* NOBUG-RESOURCE-HANDLE-CONTEXT.hpp - thread local stack to manage NoBug resource handles - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/nocopy.hpp b/src/lib/nocopy.hpp index 3ce888b39..0a2494cb4 100644 --- a/src/lib/nocopy.hpp +++ b/src/lib/nocopy.hpp @@ -1,22 +1,13 @@ /* NOCOPY.hpp - some flavours of non-copyable entities - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/null-value.hpp b/src/lib/null-value.hpp index c811eafcc..8bc5f2ed8 100644 --- a/src/lib/null-value.hpp +++ b/src/lib/null-value.hpp @@ -1,22 +1,13 @@ /* NULL-VALUE.hpp - maintain per-type NIL values in static memory - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/opaque-holder.hpp b/src/lib/opaque-holder.hpp index e751b30e7..9c3a0fb1d 100644 --- a/src/lib/opaque-holder.hpp +++ b/src/lib/opaque-holder.hpp @@ -1,22 +1,13 @@ /* OPAQUE-HOLDER.hpp - buffer holding an object inline while hiding the concrete type - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/optional-ref.hpp b/src/lib/optional-ref.hpp index 14b581380..bd16c8e23 100644 --- a/src/lib/optional-ref.hpp +++ b/src/lib/optional-ref.hpp @@ -1,22 +1,13 @@ /* OPTIONAL-REF.hpp - optional and switchable reference - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/p.hpp b/src/lib/p.hpp index e4b9794bc..7b76da0d5 100644 --- a/src/lib/p.hpp +++ b/src/lib/p.hpp @@ -1,22 +1,13 @@ /* P.hpp - customised shared_ptr with ordering and type relationships - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/path-array.hpp b/src/lib/path-array.hpp index e015abb07..626896e2a 100644 --- a/src/lib/path-array.hpp +++ b/src/lib/path-array.hpp @@ -1,22 +1,13 @@ /* PATH-ARRAY.hpp - sequence of path-like component-IDs in fixed storage - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/polymorphic-value.hpp b/src/lib/polymorphic-value.hpp index 370b8f036..9f8fa2061 100644 --- a/src/lib/polymorphic-value.hpp +++ b/src/lib/polymorphic-value.hpp @@ -1,22 +1,13 @@ /* POLYMORPHIC-VALUE.hpp - building opaque polymorphic value objects - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/ppmpl.h b/src/lib/ppmpl.h index f86d0fe00..f691fcdea 100644 --- a/src/lib/ppmpl.h +++ b/src/lib/ppmpl.h @@ -1,22 +1,13 @@ /* ppmpl.h - preprocessor meta programming library - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ #ifndef PPMPL_H diff --git a/src/lib/psplay.c b/src/lib/psplay.c index 5036f3b5b..787d03fdd 100644 --- a/src/lib/psplay.c +++ b/src/lib/psplay.c @@ -1,24 +1,15 @@ /* psplay.c - probabilistic splay tree - Copyright (C) - 2004, 2005, 2006, Christian Thaeter - Copyright (C) (contributed to CinelerraCV) - 2007, 2008, Christian Thaeter + Copyright (C) (contributed to CinelerraCV) + 2004-2006, Christian Thaeter + Copyright (C) + 2007, 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/psplay.h b/src/lib/psplay.h index 5bad01128..e19ae14fb 100644 --- a/src/lib/psplay.h +++ b/src/lib/psplay.h @@ -1,24 +1,15 @@ /* psplay.h - probabilistic splay tree - Copyright (C) - 2004, 2005, 2006, Christian Thaeter - Copyright (C) Lumiera.org - 2007, 2008, Christian Thaeter + Copyright (C) (contributed to CinelerraCV) + 2004-2006, Christian Thaeter + Copyright (C) + 2007, 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/query-diagnostics.hpp b/src/lib/query-diagnostics.hpp index 2156074bf..3d92fad0f 100644 --- a/src/lib/query-diagnostics.hpp +++ b/src/lib/query-diagnostics.hpp @@ -1,22 +1,13 @@ /* QUERY-DIAGNOSTICS.hpp - helpers for writing tests covering config queries - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/query-text.cpp b/src/lib/query-text.cpp index 6a3f152db..6e1b03a03 100644 --- a/src/lib/query-text.cpp +++ b/src/lib/query-text.cpp @@ -1,24 +1,15 @@ /* QueryText - syntactical standard representation for queries - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-text.cpp diff --git a/src/lib/query-text.hpp b/src/lib/query-text.hpp index 6052f30af..465410b53 100644 --- a/src/lib/query-text.hpp +++ b/src/lib/query-text.hpp @@ -1,22 +1,13 @@ /* QUERY-TEXT.hpp - syntactical standard representation for queries - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/query-util.cpp b/src/lib/query-util.cpp index 26bedbc1a..7e5acbba5 100644 --- a/src/lib/query-util.cpp +++ b/src/lib/query-util.cpp @@ -1,24 +1,15 @@ /* QueryUtil - support for working with terms and queries - Copyright (C) Lumiera.org - 2008, 2012 Hermann Vosseler + Copyright (C) + 2008, 2012 Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-util.cpp diff --git a/src/lib/query-util.hpp b/src/lib/query-util.hpp index a76f4a6ca..d7ea515bc 100644 --- a/src/lib/query-util.hpp +++ b/src/lib/query-util.hpp @@ -1,22 +1,13 @@ /* QUERY-UTIL.hpp - support for working with terms and queries - Copyright (C) Lumiera.org - 2008, 2012 Hermann Vosseler + Copyright (C) + 2008, 2012 Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/random-draw.hpp b/src/lib/random-draw.hpp index ec7023709..49ed8f310 100644 --- a/src/lib/random-draw.hpp +++ b/src/lib/random-draw.hpp @@ -1,22 +1,13 @@ /* RANDOM-DRAW.hpp - randomly pick limited values - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/random.cpp b/src/lib/random.cpp index 390ead38d..cebf81a18 100644 --- a/src/lib/random.cpp +++ b/src/lib/random.cpp @@ -1,24 +1,15 @@ /* random.cpp - storage and implementation for random number framework - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file random.cpp diff --git a/src/lib/random.hpp b/src/lib/random.hpp index 3a62e66bb..241a6ddfc 100644 --- a/src/lib/random.hpp +++ b/src/lib/random.hpp @@ -1,22 +1,13 @@ /* RANDOM.hpp - support for random number generation with controlled seed - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/rational.hpp b/src/lib/rational.hpp index 800c44c3e..6fd87ad9d 100644 --- a/src/lib/rational.hpp +++ b/src/lib/rational.hpp @@ -1,22 +1,13 @@ /* RATIONAL.hpp - support for precise rational arithmetics - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/recmutex.c b/src/lib/recmutex.c index dc631f25b..f0a92e1a7 100644 --- a/src/lib/recmutex.c +++ b/src/lib/recmutex.c @@ -1,22 +1,13 @@ /* recmutex.c - recursive mutex - Copyright (C) Lumiera.org - 2008, 2009, Christian Thaeter + Copyright (C) + 2008, 2009, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ #include "lib/recmutex.h" diff --git a/src/lib/recmutex.h b/src/lib/recmutex.h index 229fbfa52..fd187335f 100644 --- a/src/lib/recmutex.h +++ b/src/lib/recmutex.h @@ -1,22 +1,13 @@ /* - recmutex.h - recursive mutal exclusion locking + recmutex.h - recursive mutual exclusion locking - Copyright (C) Lumiera.org - 2008, 2009, Christian Thaeter + Copyright (C) + 2008, 2009, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ #ifndef LUMIERA_RECMUTEX_H diff --git a/src/lib/ref-array-impl.hpp b/src/lib/ref-array-impl.hpp index c948b9b2c..e42dd04d5 100644 --- a/src/lib/ref-array-impl.hpp +++ b/src/lib/ref-array-impl.hpp @@ -1,22 +1,13 @@ /* REF-ARRAY-IMPL.hpp - some implementations of the ref-array interface - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/ref-array.hpp b/src/lib/ref-array.hpp index 7cd30a664..f546eba8b 100644 --- a/src/lib/ref-array.hpp +++ b/src/lib/ref-array.hpp @@ -1,22 +1,13 @@ /* REF-ARRAY.hpp - abstraction providing array-like access to a list of references - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/regex.hpp b/src/lib/regex.hpp index 64338b161..ed36b9c45 100644 --- a/src/lib/regex.hpp +++ b/src/lib/regex.hpp @@ -1,22 +1,13 @@ /* REGEX.hpp - helpers for working with regular expressions - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/replaceable-item.hpp b/src/lib/replaceable-item.hpp index 4729cc285..b593b0877 100644 --- a/src/lib/replaceable-item.hpp +++ b/src/lib/replaceable-item.hpp @@ -1,22 +1,13 @@ /* REPLACEABLE-ITEM.hpp - adapter to take snapshot from non-assignable values - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/result.hpp b/src/lib/result.hpp index 36c0f6636..b53b3ccfd 100644 --- a/src/lib/result.hpp +++ b/src/lib/result.hpp @@ -1,22 +1,13 @@ /* RESULT.hpp - intermediary token representing the result of an operation - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/safeclib.c b/src/lib/safeclib.c index b6c53dddd..3b63d7cff 100644 --- a/src/lib/safeclib.c +++ b/src/lib/safeclib.c @@ -1,24 +1,15 @@ /* safe_clib.c - Portable and safe wrapers around some clib functions and some tools - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file safeclib.c diff --git a/src/lib/safeclib.h b/src/lib/safeclib.h index 8dd76ff8c..6b4ba7485 100644 --- a/src/lib/safeclib.h +++ b/src/lib/safeclib.h @@ -2,21 +2,12 @@ SAFECLIB.h - Portable and safe wrappers around some clib functions and some tools Copyright (C) - 2008, Christian Thaeter + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/scoped-collection.hpp b/src/lib/scoped-collection.hpp index aab2af229..1fb95e857 100644 --- a/src/lib/scoped-collection.hpp +++ b/src/lib/scoped-collection.hpp @@ -1,22 +1,13 @@ /* SCOPED-COLLECTION.hpp - managing a fixed collection of noncopyable polymorphic objects - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/scoped-holder-transfer.hpp b/src/lib/scoped-holder-transfer.hpp index cd79dbc93..36e0391f7 100644 --- a/src/lib/scoped-holder-transfer.hpp +++ b/src/lib/scoped-holder-transfer.hpp @@ -1,22 +1,13 @@ /* SCOPED-HOLDER-TRANSFER.hpp - using ScopedHolder within a STL vector - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/scoped-holder.hpp b/src/lib/scoped-holder.hpp index 745870c68..7ea390110 100644 --- a/src/lib/scoped-holder.hpp +++ b/src/lib/scoped-holder.hpp @@ -1,22 +1,13 @@ /* SCOPED-HOLDER.hpp - general purpose wrapper for dealing with ownership problems - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/scoped-ptrvect.hpp b/src/lib/scoped-ptrvect.hpp index 58fe20a64..a485965c7 100644 --- a/src/lib/scoped-ptrvect.hpp +++ b/src/lib/scoped-ptrvect.hpp @@ -1,22 +1,13 @@ /* SCOPED-PTRVECT.hpp - simple noncopyable lifecycle managing collection of pointers - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/searchpath.cpp b/src/lib/searchpath.cpp index 99cfe1fa3..263859407 100644 --- a/src/lib/searchpath.cpp +++ b/src/lib/searchpath.cpp @@ -1,24 +1,15 @@ /* Searchpath - helpers for searching directory lists and locating modules - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file searchpath.cpp diff --git a/src/lib/searchpath.hpp b/src/lib/searchpath.hpp index f079ce065..d87aa0aaf 100644 --- a/src/lib/searchpath.hpp +++ b/src/lib/searchpath.hpp @@ -1,22 +1,13 @@ /* SEARCHPATH.hpp - helpers for searching directory lists and locating modules - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/sectionlock.h b/src/lib/sectionlock.h index 8ece0da10..c7ebcab73 100644 --- a/src/lib/sectionlock.h +++ b/src/lib/sectionlock.h @@ -1,22 +1,13 @@ /* sectionlock.h - mutex state handle - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/several-builder.hpp b/src/lib/several-builder.hpp index f454c2e94..115173686 100644 --- a/src/lib/several-builder.hpp +++ b/src/lib/several-builder.hpp @@ -1,22 +1,13 @@ /* SEVERAL-BUILDER.hpp - builder for a limited fixed collection of elements - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/several.hpp b/src/lib/several.hpp index ee74c0d27..e9570df6c 100644 --- a/src/lib/several.hpp +++ b/src/lib/several.hpp @@ -1,23 +1,14 @@ /* SEVERAL.hpp - abstraction providing a limited fixed number of elements - Copyright (C) Lumiera.org - 2008, Hermann Vosseler - 2024, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/simple-allocator.hpp b/src/lib/simple-allocator.hpp index d9e55b0f9..150facd0a 100644 --- a/src/lib/simple-allocator.hpp +++ b/src/lib/simple-allocator.hpp @@ -1,22 +1,13 @@ /* SIMPLE-ALLOCATOR.hpp - frontend for plain explicit allocations - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/split-splice.hpp b/src/lib/split-splice.hpp index 02dfccdc3..c896289da 100644 --- a/src/lib/split-splice.hpp +++ b/src/lib/split-splice.hpp @@ -1,22 +1,13 @@ /* SPLIT-SPLICE.hpp - Algorithm to integrate a new interval into an axis-segmentation. - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/stat/csv.hpp b/src/lib/stat/csv.hpp index 770ddd15e..c55680cd0 100644 --- a/src/lib/stat/csv.hpp +++ b/src/lib/stat/csv.hpp @@ -1,22 +1,13 @@ /* CSV.hpp - Parser and Encoder for CSV data - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/stat/data.hpp b/src/lib/stat/data.hpp index 29b24e2a1..9a0d2e68d 100644 --- a/src/lib/stat/data.hpp +++ b/src/lib/stat/data.hpp @@ -1,22 +1,13 @@ /* DATA.hpp - read and write a table with CSV data - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/stat/file.cpp b/src/lib/stat/file.cpp index 86dd8db91..0c28bd3a5 100644 --- a/src/lib/stat/file.cpp +++ b/src/lib/stat/file.cpp @@ -1,24 +1,15 @@ /* File - collection of functions supporting unit testing - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file file.cpp diff --git a/src/lib/stat/file.hpp b/src/lib/stat/file.hpp index 4585605d3..3234a7d12 100644 --- a/src/lib/stat/file.hpp +++ b/src/lib/stat/file.hpp @@ -1,22 +1,13 @@ /* FILE.hpp - Filesystem access and helpers - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/stat/statistic.hpp b/src/lib/stat/statistic.hpp index 7816b51b2..88aa0ee27 100644 --- a/src/lib/stat/statistic.hpp +++ b/src/lib/stat/statistic.hpp @@ -1,22 +1,13 @@ /* STATISTIC.hpp - helpers for generic statistics calculations - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/sub-id.hpp b/src/lib/sub-id.hpp index 2a6c094d9..68567571a 100644 --- a/src/lib/sub-id.hpp +++ b/src/lib/sub-id.hpp @@ -1,22 +1,13 @@ /* SUB-ID.hpp - extensible symbolic identifier - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/symbol-impl.cpp b/src/lib/symbol-impl.cpp index ccf733562..8ba5ec1bc 100644 --- a/src/lib/symbol-impl.cpp +++ b/src/lib/symbol-impl.cpp @@ -1,24 +1,15 @@ /* Symbol(impl) - helpers for working with literal string IDs - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file symbol-impl.cpp ** Collection of helpers for working with the lib::Symbol. diff --git a/src/lib/symbol-table.hpp b/src/lib/symbol-table.hpp index ada73a77b..0ead6c777 100644 --- a/src/lib/symbol-table.hpp +++ b/src/lib/symbol-table.hpp @@ -1,22 +1,13 @@ /* SYMBOL-TABLE.hpp - registry for automatically interned symbol string tokens - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/symbol.hpp b/src/lib/symbol.hpp index dc554d34b..acfca01cd 100644 --- a/src/lib/symbol.hpp +++ b/src/lib/symbol.hpp @@ -1,22 +1,13 @@ /* SYMBOL.hpp - symbolic constant datatype - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/sync-barrier.hpp b/src/lib/sync-barrier.hpp index 3229db5f0..4bd5bd61d 100644 --- a/src/lib/sync-barrier.hpp +++ b/src/lib/sync-barrier.hpp @@ -1,22 +1,13 @@ /* SYNC-BARRIER.hpp - N-fold synchronisation point with yield-wait - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/sync-classlock.hpp b/src/lib/sync-classlock.hpp index 19e8def30..1338ad6b1 100644 --- a/src/lib/sync-classlock.hpp +++ b/src/lib/sync-classlock.hpp @@ -1,23 +1,14 @@ /* SYNC-CLASSLOCK.hpp - special case of object based locking tied directly to a type - Copyright (C) Lumiera.org - 2008, Christian Thaeter - Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/sync.hpp b/src/lib/sync.hpp index 6e9c885b6..3cd730da8 100644 --- a/src/lib/sync.hpp +++ b/src/lib/sync.hpp @@ -1,23 +1,15 @@ /* SYNC.hpp - generic helper for object based locking and synchronisation - Copyright (C) Lumiera.org - 2008, Christian Thaeter - Hermann Vosseler + Copyright (C) + 2007, Christian Thaeter + 2008, Hermann Vosseler + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/diagnostic-output.hpp b/src/lib/test/diagnostic-output.hpp index d696dd70f..4ab9f851b 100644 --- a/src/lib/test/diagnostic-output.hpp +++ b/src/lib/test/diagnostic-output.hpp @@ -1,22 +1,13 @@ /* DIAGNOSTIC-OUTPUT.hpp - some helpers for investigation and value output - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/event-log.cpp b/src/lib/test/event-log.cpp index c4f5c15ae..28a49b523 100644 --- a/src/lib/test/event-log.cpp +++ b/src/lib/test/event-log.cpp @@ -1,24 +1,15 @@ /* EventLog - test facility to verify the occurrence of expected events - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file event-log.cpp ** Implementation details of event logging and verification for unit tests. diff --git a/src/lib/test/event-log.hpp b/src/lib/test/event-log.hpp index 7ec2eb7b1..a25be10a8 100644 --- a/src/lib/test/event-log.hpp +++ b/src/lib/test/event-log.hpp @@ -1,22 +1,13 @@ /* EVENT-LOG.hpp - test facility to verify the occurrence of expected events - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/microbenchmark-adaptor.hpp b/src/lib/test/microbenchmark-adaptor.hpp index aec8eebfe..fa265ef57 100644 --- a/src/lib/test/microbenchmark-adaptor.hpp +++ b/src/lib/test/microbenchmark-adaptor.hpp @@ -1,22 +1,13 @@ /* MICROBENCHMARK-ADAPTOR.hpp - helper to support microbenchmarks - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/microbenchmark.hpp b/src/lib/test/microbenchmark.hpp index 71570ffc6..e8e4c5630 100644 --- a/src/lib/test/microbenchmark.hpp +++ b/src/lib/test/microbenchmark.hpp @@ -1,22 +1,13 @@ /* MICROBENCHMARK.hpp - multithreaded timing measurement - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/run.hpp b/src/lib/test/run.hpp index b6894642c..035633af9 100644 --- a/src/lib/test/run.hpp +++ b/src/lib/test/run.hpp @@ -1,23 +1,13 @@ /* RUN.hpp - helper class for grouping, registering and invoking testcases - Copyright (C) Lumiera.org - 2008, Christian Thaeter - Hermann Vosseler + Copyright (C) + 2007,2008 Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/suite.cpp b/src/lib/test/suite.cpp index 205912d61..d0b6af2b4 100644 --- a/src/lib/test/suite.cpp +++ b/src/lib/test/suite.cpp @@ -1,24 +1,15 @@ /* Suite - helper class for running collections of tests - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file suite.cpp diff --git a/src/lib/test/suite.hpp b/src/lib/test/suite.hpp index 1a49ec514..84f646619 100644 --- a/src/lib/test/suite.hpp +++ b/src/lib/test/suite.hpp @@ -1,22 +1,13 @@ /* SUITE.hpp - helper class for running collections of tests - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/temp-dir.hpp b/src/lib/test/temp-dir.hpp index 56d8a5d2e..2f9031b78 100644 --- a/src/lib/test/temp-dir.hpp +++ b/src/lib/test/temp-dir.hpp @@ -1,22 +1,13 @@ /* TEMP-DIR.hpp - automatic allocation of a temporary working directory - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/test-coll.hpp b/src/lib/test/test-coll.hpp index 39928d6a6..4c5acbd4f 100644 --- a/src/lib/test/test-coll.hpp +++ b/src/lib/test/test-coll.hpp @@ -1,22 +1,13 @@ /* TEST-COLL.hpp - containers and collections with test data - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/test-helper.cpp b/src/lib/test/test-helper.cpp index 81191dc7a..891a71cdf 100644 --- a/src/lib/test/test-helper.cpp +++ b/src/lib/test/test-helper.cpp @@ -1,24 +1,15 @@ /* Test-Helper - collection of functions supporting unit testing - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-helper.cpp diff --git a/src/lib/test/test-helper.hpp b/src/lib/test/test-helper.hpp index 2d869d43e..4419e6f48 100644 --- a/src/lib/test/test-helper.hpp +++ b/src/lib/test/test-helper.hpp @@ -1,22 +1,13 @@ /* TEST-HELPER.hpp - collection of functions supporting unit testing - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/test.h b/src/lib/test/test.h index 42ab15572..92450406f 100644 --- a/src/lib/test/test.h +++ b/src/lib/test/test.h @@ -1,22 +1,13 @@ /* TEST.h - support macros for plain-C tests - Copyright (C) Lumiera.org - 2008, 2010 Christian Thaeter + Copyright (C) + 2008, 2010 Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/testoption.cpp b/src/lib/test/testoption.cpp index 706e71cef..4fc06480a 100644 --- a/src/lib/test/testoption.cpp +++ b/src/lib/test/testoption.cpp @@ -1,24 +1,15 @@ /* TestOption - handle cmdline for invoking Testsuite - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file testoption.cpp diff --git a/src/lib/test/testoption.hpp b/src/lib/test/testoption.hpp index 804424e15..401ff946a 100644 --- a/src/lib/test/testoption.hpp +++ b/src/lib/test/testoption.hpp @@ -1,22 +1,13 @@ /* TESTOPTION.hpp - handle cmdline for invoking Testsuite - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/test/tracking-allocator.cpp b/src/lib/test/tracking-allocator.cpp index 74971c2ee..f9d761fc7 100644 --- a/src/lib/test/tracking-allocator.cpp +++ b/src/lib/test/tracking-allocator.cpp @@ -1,24 +1,15 @@ /* TrackingAllocator - custom allocator for memory management diagnostics - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tracking-allocator.cpp diff --git a/src/lib/test/tracking-allocator.hpp b/src/lib/test/tracking-allocator.hpp index d80c407e4..42c7bfbea 100644 --- a/src/lib/test/tracking-allocator.hpp +++ b/src/lib/test/tracking-allocator.hpp @@ -1,24 +1,15 @@ /* TRACKING-ALLOCATOR.hpp - custom allocator for memory management diagnostics - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tracking-allocator.hpp diff --git a/src/lib/test/tracking-dummy.hpp b/src/lib/test/tracking-dummy.hpp index 465b14112..f53abbd31 100644 --- a/src/lib/test/tracking-dummy.hpp +++ b/src/lib/test/tracking-dummy.hpp @@ -1,24 +1,15 @@ /* TRACKING-DUMMY.hpp - test dummy objects for tracking ctor/dtor calls - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tracking-dummy.hpp diff --git a/src/lib/test/transiently.hpp b/src/lib/test/transiently.hpp index 79e7e8573..074d2aaf4 100644 --- a/src/lib/test/transiently.hpp +++ b/src/lib/test/transiently.hpp @@ -1,22 +1,13 @@ /* TRANSIENTLY.hpp - temporary manipulations undone when leaving scope - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/text-template-gen-node-binding.hpp b/src/lib/text-template-gen-node-binding.hpp index a52188797..125b28e56 100644 --- a/src/lib/text-template-gen-node-binding.hpp +++ b/src/lib/text-template-gen-node-binding.hpp @@ -1,22 +1,13 @@ /* TEXT-TEMPLATE-GEN-NODE-BINDING.hpp - data binding adapter for ETD - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/text-template.hpp b/src/lib/text-template.hpp index c0a5c631c..d1d1c5190 100644 --- a/src/lib/text-template.hpp +++ b/src/lib/text-template.hpp @@ -1,22 +1,13 @@ /* TEXT-TEMPLATE.hpp - minimalistic text substitution engine - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/thread.cpp b/src/lib/thread.cpp index 13c267877..a202b362d 100644 --- a/src/lib/thread.cpp +++ b/src/lib/thread.cpp @@ -1,24 +1,15 @@ /* THREAD.hpp - thin convenience wrapper for starting threads - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sync.cpp ** This compilation unit holds some implementation details diff --git a/src/lib/thread.hpp b/src/lib/thread.hpp index 57b749391..6ec2223db 100644 --- a/src/lib/thread.hpp +++ b/src/lib/thread.hpp @@ -1,23 +1,15 @@ /* THREAD.hpp - thin convenience wrapper for starting threads - Copyright (C) Lumiera.org - 2008, 2010 Hermann Vosseler - Christian Thaeter + Copyright (C) + 2008, 2010, Christian Thaeter + 2008, 2010, Hermann Vosseler + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time.h b/src/lib/time.h index 7ba20798b..4fc96952a 100644 --- a/src/lib/time.h +++ b/src/lib/time.h @@ -1,22 +1,13 @@ /* time.h - Utilities for handling time - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ /** @file time.h diff --git a/src/lib/time/control-impl.hpp b/src/lib/time/control-impl.hpp index 64037c16d..200932293 100644 --- a/src/lib/time/control-impl.hpp +++ b/src/lib/time/control-impl.hpp @@ -1,22 +1,13 @@ /* CONTROL-IMPL.hpp - time::control implementation building blocks - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/control-policy.hpp b/src/lib/time/control-policy.hpp index 086d82835..afcac7cd4 100644 --- a/src/lib/time/control-policy.hpp +++ b/src/lib/time/control-policy.hpp @@ -1,22 +1,13 @@ /* CONTROL-POLICY.hpp - detail definition of actual time changing functionality - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/control.hpp b/src/lib/time/control.hpp index 379162cdc..06474b44a 100644 --- a/src/lib/time/control.hpp +++ b/src/lib/time/control.hpp @@ -1,22 +1,13 @@ /* CONTROL.hpp - a life time control for feedback and mutation - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/diagnostics.hpp b/src/lib/time/diagnostics.hpp index f7e720bf4..1a071e3c9 100644 --- a/src/lib/time/diagnostics.hpp +++ b/src/lib/time/diagnostics.hpp @@ -1,22 +1,13 @@ /* DIAGNOSTICS.hpp - diagnostics and output helpers for time(code) values - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/digxel.hpp b/src/lib/time/digxel.hpp index c43b5e5ea..9d76ae84d 100644 --- a/src/lib/time/digxel.hpp +++ b/src/lib/time/digxel.hpp @@ -1,22 +1,13 @@ /* DIGXEL.hpp - grid aligned and fixed format time specifications - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/formats.hpp b/src/lib/time/formats.hpp index 17e83dadd..86de9fbfd 100644 --- a/src/lib/time/formats.hpp +++ b/src/lib/time/formats.hpp @@ -1,22 +1,13 @@ /* FORMATS.hpp - formats for displaying and specifying time - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/grid.hpp b/src/lib/time/grid.hpp index a154d52e9..5fd81430c 100644 --- a/src/lib/time/grid.hpp +++ b/src/lib/time/grid.hpp @@ -1,22 +1,13 @@ /* GRID.hpp - time scale grid abstraction - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/mutation.cpp b/src/lib/time/mutation.cpp index 204869bc4..ce6e47653 100644 --- a/src/lib/time/mutation.cpp +++ b/src/lib/time/mutation.cpp @@ -1,24 +1,15 @@ /* Mutation - changing and adjusting time values - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mutation.cpp diff --git a/src/lib/time/mutation.hpp b/src/lib/time/mutation.hpp index 872f7976d..c59bb48f5 100644 --- a/src/lib/time/mutation.hpp +++ b/src/lib/time/mutation.hpp @@ -1,22 +1,13 @@ /* MUTATION.hpp - changing and adjusting time values - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/quantiser.cpp b/src/lib/time/quantiser.cpp index 4e8cff95c..1787605cd 100644 --- a/src/lib/time/quantiser.cpp +++ b/src/lib/time/quantiser.cpp @@ -1,24 +1,15 @@ /* Quantiser - aligning time values to a time grid - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file quantiser.cpp diff --git a/src/lib/time/quantiser.hpp b/src/lib/time/quantiser.hpp index 904f89dda..f0df2926f 100644 --- a/src/lib/time/quantiser.hpp +++ b/src/lib/time/quantiser.hpp @@ -1,22 +1,13 @@ /* QUANTISER.hpp - aligning time values to a time grid - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/time.cpp b/src/lib/time/time.cpp index 2c3cb7b62..51e54dc03 100644 --- a/src/lib/time/time.cpp +++ b/src/lib/time/time.cpp @@ -1,26 +1,17 @@ /* Time - Lumiera time handling foundation - Copyright (C) Lumiera.org - 2008, Christian Thaeter - 2010, Stefan Kangas - 2011, Hermann Vosseler + Copyright (C) + 2008, Christian Thaeter + 2010, Stefan Kangas + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time.cpp diff --git a/src/lib/time/timecode.cpp b/src/lib/time/timecode.cpp index f6aec1e12..3bbb422cf 100644 --- a/src/lib/time/timecode.cpp +++ b/src/lib/time/timecode.cpp @@ -1,24 +1,15 @@ /* Timecode - implementation of fixed grid aligned time specifications - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timecode.cpp diff --git a/src/lib/time/timecode.hpp b/src/lib/time/timecode.hpp index bb3a8c5ea..da088578f 100644 --- a/src/lib/time/timecode.hpp +++ b/src/lib/time/timecode.hpp @@ -1,22 +1,13 @@ /* TIMECODE.hpp - grid aligned and fixed format time specifications - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/timequant.hpp b/src/lib/time/timequant.hpp index 09f69a444..040cb57b3 100644 --- a/src/lib/time/timequant.hpp +++ b/src/lib/time/timequant.hpp @@ -1,22 +1,13 @@ /* TIMEQUANT.hpp - quantised (grid aligned) time values - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/time/timevalue.hpp b/src/lib/time/timevalue.hpp index 98e9fcd14..485c425e3 100644 --- a/src/lib/time/timevalue.hpp +++ b/src/lib/time/timevalue.hpp @@ -1,22 +1,13 @@ /* TIMEVALUE.hpp - basic definitions for time values and time intervals - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/tmpbuf.c b/src/lib/tmpbuf.c index f5993b959..08ef7ba96 100644 --- a/src/lib/tmpbuf.c +++ b/src/lib/tmpbuf.c @@ -1,24 +1,15 @@ /* Tmpbuf - Round Robin Temporary buffers - Copyright (C) Lumiera.org - 2008, 2010 Christian Thaeter + Copyright (C) + 2008, 2010 Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tmpbuf.c diff --git a/src/lib/tmpbuf.h b/src/lib/tmpbuf.h index f67c7ef62..6d326f63f 100644 --- a/src/lib/tmpbuf.h +++ b/src/lib/tmpbuf.h @@ -1,22 +1,13 @@ /* TMPBUF.h - Round Robin Temporary buffers - Copyright (C) Lumiera.org - 2008, 2010 Christian Thaeter + Copyright (C) + 2008, 2010 Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/typed-allocation-manager.hpp b/src/lib/typed-allocation-manager.hpp index a424dd204..6b3fdd855 100644 --- a/src/lib/typed-allocation-manager.hpp +++ b/src/lib/typed-allocation-manager.hpp @@ -1,22 +1,13 @@ /* TYPED-ALLOCATION-MANAGER.hpp - abstract backbone to build custom memory managers - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/typed-counter.hpp b/src/lib/typed-counter.hpp index f32589dcd..7ba1e42c4 100644 --- a/src/lib/typed-counter.hpp +++ b/src/lib/typed-counter.hpp @@ -1,22 +1,13 @@ /* TYPED-COUNTER.hpp - maintain a set of type based contexts - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/uninitialised-storage.hpp b/src/lib/uninitialised-storage.hpp index 193c3d263..b6f10e62e 100644 --- a/src/lib/uninitialised-storage.hpp +++ b/src/lib/uninitialised-storage.hpp @@ -1,22 +1,13 @@ /* UNINITIALISED-STORAGE.hpp - array-like container with raw storage - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/unique-malloc-owner.hpp b/src/lib/unique-malloc-owner.hpp index fda6d677c..d880c5a06 100644 --- a/src/lib/unique-malloc-owner.hpp +++ b/src/lib/unique-malloc-owner.hpp @@ -1,22 +1,13 @@ /* UNIQUE-MALLOC-OWNER.hpp - automatic management of C-malloced memory - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/util-coll.hpp b/src/lib/util-coll.hpp index a635bc318..541bd008c 100644 --- a/src/lib/util-coll.hpp +++ b/src/lib/util-coll.hpp @@ -1,22 +1,13 @@ /* UTIL-COLL.hpp - helpers and convenience shortcuts for working with collections - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/util-foreach.hpp b/src/lib/util-foreach.hpp index 18a33d3bf..10a06435e 100644 --- a/src/lib/util-foreach.hpp +++ b/src/lib/util-foreach.hpp @@ -1,22 +1,13 @@ /* UTIL-FOREACH.hpp - helpers for doing something for each element - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/util-quant.hpp b/src/lib/util-quant.hpp index 4dd9751a5..275ef3139 100644 --- a/src/lib/util-quant.hpp +++ b/src/lib/util-quant.hpp @@ -1,22 +1,13 @@ /* UTIL-QUANT.hpp - helper functions to deal with quantisation and comparison - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/util-tuple.hpp b/src/lib/util-tuple.hpp index 3a35c85af..5f3c46215 100644 --- a/src/lib/util-tuple.hpp +++ b/src/lib/util-tuple.hpp @@ -1,22 +1,13 @@ /* UTIL-TUPLE.hpp - helpers and convenience shortcuts for working with tuples - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/util.cpp b/src/lib/util.cpp index 185a0098e..0065fc8f7 100644 --- a/src/lib/util.cpp +++ b/src/lib/util.cpp @@ -1,24 +1,15 @@ /* util.cpp - helper functions implementation - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util.cpp diff --git a/src/lib/util.hpp b/src/lib/util.hpp index 1dac816e4..fbeba568f 100644 --- a/src/lib/util.hpp +++ b/src/lib/util.hpp @@ -1,22 +1,13 @@ /* UTIL.hpp - collection of small helper functions used "everywhere" - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/variant-o.hpp b/src/lib/variant-o.hpp index 11fdc5d41..b17316a7c 100644 --- a/src/lib/variant-o.hpp +++ b/src/lib/variant-o.hpp @@ -1,22 +1,13 @@ /* VARIANT.hpp - simple variant wrapper (typesafe union) - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/variant.hpp b/src/lib/variant.hpp index e5ae019d0..8247c0b2b 100644 --- a/src/lib/variant.hpp +++ b/src/lib/variant.hpp @@ -1,22 +1,13 @@ /* VARIANT.hpp - lightweight typesafe union record - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/vcall.h b/src/lib/vcall.h index 16bf81b2d..83b04a055 100644 --- a/src/lib/vcall.h +++ b/src/lib/vcall.h @@ -2,21 +2,12 @@ vcall.h - helper macros for virtual (method) calls in C Copyright (C) Lumiera.org - 2010, Christian Thaeter + 2010, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ #ifndef LUMIERA_VCALL_H diff --git a/src/lib/verb-token.hpp b/src/lib/verb-token.hpp index 695fef7f7..6db212476 100644 --- a/src/lib/verb-token.hpp +++ b/src/lib/verb-token.hpp @@ -1,22 +1,13 @@ /* VERB-TOKEN.hpp - double dispatch based on DSL tokens - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/verb-visitor.hpp b/src/lib/verb-visitor.hpp index 50df527a5..7e4a4c6f9 100644 --- a/src/lib/verb-visitor.hpp +++ b/src/lib/verb-visitor.hpp @@ -1,22 +1,13 @@ /* VERB-VISITOR.hpp - double dispatch to arbitrary functions on a common interface - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/visitor-dispatcher.hpp b/src/lib/visitor-dispatcher.hpp index 0514cf0ef..5d7acc23d 100644 --- a/src/lib/visitor-dispatcher.hpp +++ b/src/lib/visitor-dispatcher.hpp @@ -1,22 +1,13 @@ /* VISITOR-DISPATCHER.hpp - visitor implementation details - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/visitor-policies.hpp b/src/lib/visitor-policies.hpp index 558fbda35..944bb6339 100644 --- a/src/lib/visitor-policies.hpp +++ b/src/lib/visitor-policies.hpp @@ -1,22 +1,13 @@ /* VISITOR-POLICIES.hpp - Acyclic Visitor library - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/visitor.hpp b/src/lib/visitor.hpp index 78925dbf6..6be916ecd 100644 --- a/src/lib/visitor.hpp +++ b/src/lib/visitor.hpp @@ -1,22 +1,13 @@ /* VISITOR.hpp - Generic Visitor library implementation - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. ==================================================================== This code is heavily inspired by diff --git a/src/lib/wrapper.hpp b/src/lib/wrapper.hpp index 0453d262d..3d3fe65d8 100644 --- a/src/lib/wrapper.hpp +++ b/src/lib/wrapper.hpp @@ -1,22 +1,13 @@ /* WRAPPER.hpp - some smart wrapping and reference managing helper templates - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/wrapperptr.hpp b/src/lib/wrapperptr.hpp index 8205928e1..42ca4f2e0 100644 --- a/src/lib/wrapperptr.hpp +++ b/src/lib/wrapperptr.hpp @@ -1,22 +1,13 @@ /* WRAPPERPTR.hpp - variant record able to hold a pointer to some smart-ptr/wrapper types, providing conversions - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lib/zombie-check.hpp b/src/lib/zombie-check.hpp index b4f005d7e..600fd0d93 100644 --- a/src/lib/zombie-check.hpp +++ b/src/lib/zombie-check.hpp @@ -1,22 +1,13 @@ /* ZOMBIE-CHECK.hpp - flatliner self-detection - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/lumiera/main.cpp b/src/lumiera/main.cpp index 34c7f7724..5476ce1f6 100644 --- a/src/lumiera/main.cpp +++ b/src/lumiera/main.cpp @@ -1,26 +1,17 @@ /* main.cpp - start the Lumiera Application - Copyright (C) Lumiera.org - 2007,2011, Joel Holdsworth - Christian Thaeter - Hermann Vosseler + Copyright (C) + 2007, Joel Holdsworth + 2007, Christian Thaeter + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. -*/ +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. +* *****************************************************************/ /** @file main.cpp ** Lumiera application main function diff --git a/src/stage/config-keys.cpp b/src/stage/config-keys.cpp index 34046cc72..b1a370571 100644 --- a/src/stage/config-keys.cpp +++ b/src/stage/config-keys.cpp @@ -1,25 +1,16 @@ /* ConfigKeys - magic keys to query the global application configuration - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2017, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config-keys.hpp diff --git a/src/stage/config-keys.hpp b/src/stage/config-keys.hpp index 1fa2de858..a4da9df9c 100644 --- a/src/stage/config-keys.hpp +++ b/src/stage/config-keys.hpp @@ -1,23 +1,14 @@ /* CONFIG-KEYS.hpp - magic keys to query the global application configuration - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2017, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/actions.hpp b/src/stage/ctrl/actions.hpp index 21c882c6e..3057554f9 100644 --- a/src/stage/ctrl/actions.hpp +++ b/src/stage/ctrl/actions.hpp @@ -1,22 +1,13 @@ /* ACTIONS.hpp - Definition of a helper class for user actions / menu - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/bus-term.hpp b/src/stage/ctrl/bus-term.hpp index 6d3a6fd13..e7b6b269e 100644 --- a/src/stage/ctrl/bus-term.hpp +++ b/src/stage/ctrl/bus-term.hpp @@ -1,22 +1,13 @@ /* BUS-TERM.hpp - connection point for UI elements to the UI-Bus - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/core-service.hpp b/src/stage/ctrl/core-service.hpp index b642a6ef8..6198fc9a1 100644 --- a/src/stage/ctrl/core-service.hpp +++ b/src/stage/ctrl/core-service.hpp @@ -1,22 +1,13 @@ /* CORE-SERVICE.hpp - service to address the application core from the UI - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/facade.hpp b/src/stage/ctrl/facade.hpp index fd87bf104..dfc549d9e 100644 --- a/src/stage/ctrl/facade.hpp +++ b/src/stage/ctrl/facade.hpp @@ -1,22 +1,13 @@ /* FACADE.hpp - Manage the public facade interfaces of the UI - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/global-ctx.hpp b/src/stage/ctrl/global-ctx.hpp index 8de320933..189aedd62 100644 --- a/src/stage/ctrl/global-ctx.hpp +++ b/src/stage/ctrl/global-ctx.hpp @@ -1,22 +1,13 @@ /* GLOBAL-CTX.hpp - Context of global UI top-level entities - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/nexus.hpp b/src/stage/ctrl/nexus.hpp index 78df18ae5..607c1fb10 100644 --- a/src/stage/ctrl/nexus.hpp +++ b/src/stage/ctrl/nexus.hpp @@ -1,22 +1,13 @@ /* NEXUS.hpp - UI-Bus central hub and routing table - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/notification-hub.hpp b/src/stage/ctrl/notification-hub.hpp index 4136ee63e..4b6719cd4 100644 --- a/src/stage/ctrl/notification-hub.hpp +++ b/src/stage/ctrl/notification-hub.hpp @@ -1,22 +1,13 @@ /* NOTIFICATION-HUB.hpp - receive and reroute notification messages - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/panel-locator.hpp b/src/stage/ctrl/panel-locator.hpp index 34e633821..959926864 100644 --- a/src/stage/ctrl/panel-locator.hpp +++ b/src/stage/ctrl/panel-locator.hpp @@ -1,22 +1,13 @@ /* PANEL-LOCATOR.hpp - manage all top level windows - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/playback-controller.cpp b/src/stage/ctrl/playback-controller.cpp index c15d05b7e..e89723f12 100644 --- a/src/stage/ctrl/playback-controller.cpp +++ b/src/stage/ctrl/playback-controller.cpp @@ -1,24 +1,15 @@ /* PlaybackController - playback controller object - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file playback-controller.cpp diff --git a/src/stage/ctrl/playback-controller.hpp b/src/stage/ctrl/playback-controller.hpp index f1b5a5722..7d682925b 100644 --- a/src/stage/ctrl/playback-controller.hpp +++ b/src/stage/ctrl/playback-controller.hpp @@ -1,22 +1,13 @@ /* PLAYBACK-CONTROLLER.hpp - playback controller object - Copyright (C) Lumiera.org - 2009, Joel Holdsworth + Copyright (C) + 2009, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/state-manager.hpp b/src/stage/ctrl/state-manager.hpp index 9e95a688d..58f5c9848 100644 --- a/src/stage/ctrl/state-manager.hpp +++ b/src/stage/ctrl/state-manager.hpp @@ -1,22 +1,13 @@ /* STATE-MANAGER.hpp - maintaining persistent interface state - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/state-map-grouping-storage.hpp b/src/stage/ctrl/state-map-grouping-storage.hpp index f142b3a2e..514b0285b 100644 --- a/src/stage/ctrl/state-map-grouping-storage.hpp +++ b/src/stage/ctrl/state-map-grouping-storage.hpp @@ -1,22 +1,13 @@ /* STATE-MAP-GROUPING-STORAGE.hpp - grouping storage to track presentation state - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/state-recorder.hpp b/src/stage/ctrl/state-recorder.hpp index fd8b9c30d..aa6d9e69c 100644 --- a/src/stage/ctrl/state-recorder.hpp +++ b/src/stage/ctrl/state-recorder.hpp @@ -1,22 +1,13 @@ /* STATE-RECORDER.hpp - map based recording of presentation state - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/ui-dispatcher.hpp b/src/stage/ctrl/ui-dispatcher.hpp index 888f07bb2..623dc8297 100644 --- a/src/stage/ctrl/ui-dispatcher.hpp +++ b/src/stage/ctrl/ui-dispatcher.hpp @@ -1,22 +1,13 @@ /* UI-DISPATCHER.hpp - dispatch invocations into the UI event thread - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/ui-manager.cpp b/src/stage/ctrl/ui-manager.cpp index bcf5961cc..d541a439b 100644 --- a/src/stage/ctrl/ui-manager.cpp +++ b/src/stage/ctrl/ui-manager.cpp @@ -1,25 +1,16 @@ /* UiManager - Global UI Manager - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2017, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-manager.cpp diff --git a/src/stage/ctrl/ui-manager.hpp b/src/stage/ctrl/ui-manager.hpp index edf6e6ab2..3d081573a 100644 --- a/src/stage/ctrl/ui-manager.hpp +++ b/src/stage/ctrl/ui-manager.hpp @@ -1,23 +1,14 @@ /* UI-MANAGER.hpp - Global UI Manager - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2017, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/ui-state.cpp b/src/stage/ctrl/ui-state.cpp index ee5108248..7720ae91d 100644 --- a/src/stage/ctrl/ui-state.cpp +++ b/src/stage/ctrl/ui-state.cpp @@ -1,24 +1,15 @@ /* UiState - manage persistent interface state - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-state.cpp diff --git a/src/stage/ctrl/ui-state.hpp b/src/stage/ctrl/ui-state.hpp index 5676de429..0746e8282 100644 --- a/src/stage/ctrl/ui-state.hpp +++ b/src/stage/ctrl/ui-state.hpp @@ -1,22 +1,13 @@ /* UI_STATE.hpp - manage persistent interface state - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ctrl/window-locator.cpp b/src/stage/ctrl/window-locator.cpp index a1e16833d..789e656ec 100644 --- a/src/stage/ctrl/window-locator.cpp +++ b/src/stage/ctrl/window-locator.cpp @@ -1,24 +1,15 @@ /* WindowLocator - manage all top level windows - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file window-locator.cpp diff --git a/src/stage/ctrl/window-locator.hpp b/src/stage/ctrl/window-locator.hpp index 7cb2ac9e9..6c7e3c20d 100644 --- a/src/stage/ctrl/window-locator.hpp +++ b/src/stage/ctrl/window-locator.hpp @@ -1,22 +1,13 @@ /* WINDOW-LOCATOR.hpp - manage all top level windows - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/dialog/dialog.hpp b/src/stage/dialog/dialog.hpp index 2b954ebe4..4525cc088 100644 --- a/src/stage/dialog/dialog.hpp +++ b/src/stage/dialog/dialog.hpp @@ -1,22 +1,13 @@ /* DIALOG.hpp - Definitions of globals for dialogs - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/dialog/name-chooser.cpp b/src/stage/dialog/name-chooser.cpp index 9ee41727c..521c79afb 100644 --- a/src/stage/dialog/name-chooser.cpp +++ b/src/stage/dialog/name-chooser.cpp @@ -1,24 +1,15 @@ /* NameChooser - dialog to enter a string name - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file name-chooser.cpp diff --git a/src/stage/dialog/name-chooser.hpp b/src/stage/dialog/name-chooser.hpp index b1359064d..c787cee28 100644 --- a/src/stage/dialog/name-chooser.hpp +++ b/src/stage/dialog/name-chooser.hpp @@ -1,22 +1,13 @@ /* NAME-CHOOSER.hpp - dialog to enter a string name - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/dialog/preferences-dialog.hpp b/src/stage/dialog/preferences-dialog.hpp index 04ad680e8..52ecbc8a8 100644 --- a/src/stage/dialog/preferences-dialog.hpp +++ b/src/stage/dialog/preferences-dialog.hpp @@ -1,22 +1,13 @@ /* PREFERENCES-DIALOG.hpp - dialog for application preferences - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/dialog/render.cpp b/src/stage/dialog/render.cpp index d2384af01..5dc806385 100644 --- a/src/stage/dialog/render.cpp +++ b/src/stage/dialog/render.cpp @@ -1,24 +1,15 @@ /* Render - dialog to define render output - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file render.cpp diff --git a/src/stage/dialog/render.hpp b/src/stage/dialog/render.hpp index 5a34f6b78..df2d4320c 100644 --- a/src/stage/dialog/render.hpp +++ b/src/stage/dialog/render.hpp @@ -1,22 +1,13 @@ /* RENDER.hpp - dialog to define render output - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/dialog/test-control.hpp b/src/stage/dialog/test-control.hpp index 109eb0571..d7e27bc67 100644 --- a/src/stage/dialog/test-control.hpp +++ b/src/stage/dialog/test-control.hpp @@ -1,22 +1,13 @@ /* TEST-CONTROL.hpp - child window to trigger self tests and diagnostics - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/display-service.cpp b/src/stage/display-service.cpp index 8939c87dd..639c30e35 100644 --- a/src/stage/display-service.cpp +++ b/src/stage/display-service.cpp @@ -1,24 +1,15 @@ /* DisplayService - service providing access to a display for outputting frames - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file display-service.cpp @@ -82,8 +73,8 @@ namespace stage { { (void)ifa; return - "Copyright (C) Lumiera.org\n" - " 2009 Hermann Vosseler "; + "Copyright (C)\n" + " 2009, Hermann Vosseler "; } ) , LUMIERA_INTERFACE_INLINE (license, @@ -91,19 +82,11 @@ namespace stage { { (void)ifa; return - "This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n" - "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" - "\n" - "You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"; + "**Lumiera** is free software; you can redistribute it and/or modify it\n" + "under the terms of the GNU General Public License as published by the\n" + "Free Software Foundation; either version 2 of the License, or (at your\n" + "option) any later version. See the file COPYING for further details." + ; } ) , LUMIERA_INTERFACE_INLINE (state, diff --git a/src/stage/display-service.hpp b/src/stage/display-service.hpp index b7f360e82..e4b1de786 100644 --- a/src/stage/display-service.hpp +++ b/src/stage/display-service.hpp @@ -1,22 +1,13 @@ /* DISPLAY-SERVICE.hpp - service providing access to a display for outputting frames - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/draw/cairo-util.cpp b/src/stage/draw/cairo-util.cpp index 7f6b39634..695f2ba7e 100644 --- a/src/stage/draw/cairo-util.cpp +++ b/src/stage/draw/cairo-util.cpp @@ -1,24 +1,15 @@ /* CairoUtil - utility functions for Cairo - Copyright (C) Lumiera.org - 2010, Stefan Kangas + Copyright (C) + 2010, Stefan Kangas - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file cairo-util.cpp diff --git a/src/stage/draw/cairo-util.hpp b/src/stage/draw/cairo-util.hpp index 77a972db9..93b2bf178 100644 --- a/src/stage/draw/cairo-util.hpp +++ b/src/stage/draw/cairo-util.hpp @@ -1,24 +1,15 @@ /* CAIRO-UTIL.hpp - utility functions for Cairo - Copyright (C) Lumiera.org - 2010, Stefan Kangas + Copyright (C) + 2010, Stefan Kangas - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file cairo-util.hpp diff --git a/src/stage/draw/rectangle.cpp b/src/stage/draw/rectangle.cpp index ebdafac4c..26acd7534 100644 --- a/src/stage/draw/rectangle.cpp +++ b/src/stage/draw/rectangle.cpp @@ -1,24 +1,15 @@ /* Rectangle - utility functions for GDK rectangles - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file rectangle.cpp diff --git a/src/stage/draw/rectangle.hpp b/src/stage/draw/rectangle.hpp index fb18969a9..3a48c163c 100644 --- a/src/stage/draw/rectangle.hpp +++ b/src/stage/draw/rectangle.hpp @@ -1,24 +1,15 @@ /* RECTANGLE.hpp - utility functions for GDK rectangles - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file rectangle.hpp diff --git a/src/stage/gtk-base.hpp b/src/stage/gtk-base.hpp index 8fa06f674..a84a8a631 100644 --- a/src/stage/gtk-base.hpp +++ b/src/stage/gtk-base.hpp @@ -1,23 +1,14 @@ /* GTK-BASE.hpp - GTK includes and basic definitions - Copyright (C) Lumiera.org - 2011, Hermann Vosseler - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ @@ -65,6 +56,7 @@ //--------------------tricky special Include sequence #include "lib/error.hpp" +#include "lib/integral.hpp" #ifdef ENABLE_NLS diff --git a/src/stage/gtk-lumiera.cpp b/src/stage/gtk-lumiera.cpp index bae314b1c..446c0fba6 100644 --- a/src/stage/gtk-lumiera.cpp +++ b/src/stage/gtk-lumiera.cpp @@ -1,26 +1,17 @@ /* GtkLumiera - entry point for the lumiera GUI loaded as shared module - Copyright (C) Lumiera.org - 2007-2008, Joel Holdsworth - 2009, Hermann Vosseler - Christian Thaeter + Copyright (C) + 2007-2008, Joel Holdsworth + 2009, Hermann Vosseler + 2016,2017 Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file gtk-lumiera.cpp @@ -204,10 +195,11 @@ extern "C" { /* ================== define a lumieraorg_Gui instance ============ { (void)ifa; return - "Copyright (C) Lumiera.org\n" - "2007-2008, Joel Holdsworth \n" - "2009, Christian Thaeter \n" - " Hermann Vosseler "; + "Copyright (C)\n" + " 2007-2008, Joel Holdsworth \n" + " 2009, Christian Thaeter \n" + " 2009, Hermann Vosseler " + " 2016,2017, Hermann Vosseler "; } ) , LUMIERA_INTERFACE_INLINE (license, @@ -215,19 +207,11 @@ extern "C" { /* ================== define a lumieraorg_Gui instance ============ { (void)ifa; return - "This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n" - "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" - "\n" - "You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"; + "**Lumiera** is free software; you can redistribute it and/or modify it\n" + "under the terms of the GNU General Public License as published by the\n" + "Free Software Foundation; either version 2 of the License, or (at your\n" + "option) any later version. See the file COPYING for further details." + ; } ) , LUMIERA_INTERFACE_INLINE (state, diff --git a/src/stage/guifacade.hpp b/src/stage/guifacade.hpp index 60f1df982..edac38abe 100644 --- a/src/stage/guifacade.hpp +++ b/src/stage/guifacade.hpp @@ -1,22 +1,13 @@ /* GUIFACADE.hpp - access point for communicating with the Lumiera GTK GUI - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/id-scheme.hpp b/src/stage/id-scheme.hpp index 580978482..d10a3514e 100644 --- a/src/stage/id-scheme.hpp +++ b/src/stage/id-scheme.hpp @@ -1,22 +1,13 @@ /* ID-SCHEME.hpp - naming and ID scheme definitions for the GUI - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/cmd-context.cpp b/src/stage/interact/cmd-context.cpp index ecfce8482..00d7203fb 100644 --- a/src/stage/interact/cmd-context.cpp +++ b/src/stage/interact/cmd-context.cpp @@ -1,24 +1,15 @@ /* CmdContext - interface to access command context binding services within the UI - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file cmd-context.cpp diff --git a/src/stage/interact/cmd-context.hpp b/src/stage/interact/cmd-context.hpp index 509c27bd7..b7c1505b3 100644 --- a/src/stage/interact/cmd-context.hpp +++ b/src/stage/interact/cmd-context.hpp @@ -1,22 +1,13 @@ /* CMD-CONTEXT.hpp - interface to access command context binding services within the UI - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/drag-relocate-controller.hpp b/src/stage/interact/drag-relocate-controller.hpp index 6fd290057..dbb8d31c1 100644 --- a/src/stage/interact/drag-relocate-controller.hpp +++ b/src/stage/interact/drag-relocate-controller.hpp @@ -1,22 +1,13 @@ /* DRAG-RELOCATE-CONTROLLER.hpp - concrete gesture controller to relocate a widget by dragging - Copyright (C) Lumiera.org - 2021, Hermann Vosseler + Copyright (C) + 2021, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/elem-access-dir.hpp b/src/stage/interact/elem-access-dir.hpp index 7b82d0824..aaeea9691 100644 --- a/src/stage/interact/elem-access-dir.hpp +++ b/src/stage/interact/elem-access-dir.hpp @@ -1,22 +1,13 @@ /* ELEM-ACCESS-DIR.hpp - service to access generic elements in the UI - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/focus-tracker.cpp b/src/stage/interact/focus-tracker.cpp index 389314d48..ed31664bd 100644 --- a/src/stage/interact/focus-tracker.cpp +++ b/src/stage/interact/focus-tracker.cpp @@ -1,24 +1,15 @@ /* FocusTracker - track focus and activation changes to move the activity spot - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file focus-tracker.cpp diff --git a/src/stage/interact/focus-tracker.hpp b/src/stage/interact/focus-tracker.hpp index 3dbec9829..55f608c0f 100644 --- a/src/stage/interact/focus-tracker.hpp +++ b/src/stage/interact/focus-tracker.hpp @@ -1,22 +1,13 @@ /* FOCUS-TRACKER.hpp - track focus and activation changes to move the activity spot - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/gesture-state.cpp b/src/stage/interact/gesture-state.cpp index e10aec884..573be6787 100644 --- a/src/stage/interact/gesture-state.cpp +++ b/src/stage/interact/gesture-state.cpp @@ -1,24 +1,15 @@ /* GestureState - holder for interaction-state dedicated to specific gestures - Copyright (C) Lumiera.org - 2021, Hermann Vosseler + Copyright (C) + 2021, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file gesture-state.cpp diff --git a/src/stage/interact/gesture-state.hpp b/src/stage/interact/gesture-state.hpp index 2226e31f8..1889ca3ac 100644 --- a/src/stage/interact/gesture-state.hpp +++ b/src/stage/interact/gesture-state.hpp @@ -1,22 +1,13 @@ /* GESTURE-STATE.hpp - holder for interaction-state dedicated to specific gestures - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/interaction-director.cpp b/src/stage/interact/interaction-director.cpp index 3791f1136..0153e18ad 100644 --- a/src/stage/interact/interaction-director.cpp +++ b/src/stage/interact/interaction-director.cpp @@ -1,24 +1,15 @@ /* interactionDirector - Global UI Manager - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file interaction-director.cpp diff --git a/src/stage/interact/interaction-director.hpp b/src/stage/interact/interaction-director.hpp index 577ae40e3..c59492261 100644 --- a/src/stage/interact/interaction-director.hpp +++ b/src/stage/interact/interaction-director.hpp @@ -1,22 +1,13 @@ /* INTERACTION-DIRECTOR.hpp - Global UI Manager - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/interaction-state.cpp b/src/stage/interact/interaction-state.cpp index ed5c5e7d7..c4b959ec9 100644 --- a/src/stage/interact/interaction-state.cpp +++ b/src/stage/interact/interaction-state.cpp @@ -1,24 +1,15 @@ /* InteractionState - facility to watch and guide one aspect of UI interaction - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file interaction-state.cpp diff --git a/src/stage/interact/interaction-state.hpp b/src/stage/interact/interaction-state.hpp index 299db28a9..be682e0ce 100644 --- a/src/stage/interact/interaction-state.hpp +++ b/src/stage/interact/interaction-state.hpp @@ -1,22 +1,13 @@ /* INTERACTION-STATE.hpp - facility to watch and guide one aspect of UI interaction - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/navigator.cpp b/src/stage/interact/navigator.cpp index 6c7a698d9..f1a70199c 100644 --- a/src/stage/interact/navigator.cpp +++ b/src/stage/interact/navigator.cpp @@ -1,24 +1,15 @@ /* Navigator - controller for global navigation through interface space - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file navigator.cpp diff --git a/src/stage/interact/navigator.hpp b/src/stage/interact/navigator.hpp index 8d2cce914..434b880d4 100644 --- a/src/stage/interact/navigator.hpp +++ b/src/stage/interact/navigator.hpp @@ -1,22 +1,13 @@ /* NAVIGATOR.hpp - controller for global navigation through interface space - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/spot-locator.cpp b/src/stage/interact/spot-locator.cpp index bc52e415a..dccd9f02e 100644 --- a/src/stage/interact/spot-locator.cpp +++ b/src/stage/interact/spot-locator.cpp @@ -1,24 +1,15 @@ /* SpotLocator - conduct and direct a global centre of activity - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file spot-locator.cpp diff --git a/src/stage/interact/spot-locator.hpp b/src/stage/interact/spot-locator.hpp index 1b225b8f7..418a0c862 100644 --- a/src/stage/interact/spot-locator.hpp +++ b/src/stage/interact/spot-locator.hpp @@ -1,22 +1,13 @@ /* SPOT-LOCATOR.hpp - conduct and direct a global centre of activity - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/ui-coord-resolver.cpp b/src/stage/interact/ui-coord-resolver.cpp index b1cb227e8..adbf653f9 100644 --- a/src/stage/interact/ui-coord-resolver.cpp +++ b/src/stage/interact/ui-coord-resolver.cpp @@ -1,24 +1,15 @@ /* UICoordResolver - resolve UI coordinate spec against actual window topology - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-coord-resolver.cpp diff --git a/src/stage/interact/ui-coord-resolver.hpp b/src/stage/interact/ui-coord-resolver.hpp index 5ab3617cb..ce7729675 100644 --- a/src/stage/interact/ui-coord-resolver.hpp +++ b/src/stage/interact/ui-coord-resolver.hpp @@ -1,22 +1,13 @@ /* UI-COORD-RESOLVER.hpp - resolve UI coordinate spec against actual window topology - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/ui-coord.hpp b/src/stage/interact/ui-coord.hpp index 36f4d92e2..4aa675984 100644 --- a/src/stage/interact/ui-coord.hpp +++ b/src/stage/interact/ui-coord.hpp @@ -1,22 +1,13 @@ /* UI-COORD.hpp - generic topological location addressing scheme within the UI - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/ui-location-solver.hpp b/src/stage/interact/ui-location-solver.hpp index d62cec9bc..a004d5e88 100644 --- a/src/stage/interact/ui-location-solver.hpp +++ b/src/stage/interact/ui-location-solver.hpp @@ -1,22 +1,13 @@ /* UI-LOCATION-SOLVER.hpp - decide upon a possible location for some UI component - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/view-locator.cpp b/src/stage/interact/view-locator.cpp index b8c02ab3b..806417bb1 100644 --- a/src/stage/interact/view-locator.cpp +++ b/src/stage/interact/view-locator.cpp @@ -1,24 +1,15 @@ /* ViewLocator - access and allocation of UI component views - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file view-locator.cpp diff --git a/src/stage/interact/view-locator.hpp b/src/stage/interact/view-locator.hpp index af67ec876..0ac4d09a7 100644 --- a/src/stage/interact/view-locator.hpp +++ b/src/stage/interact/view-locator.hpp @@ -1,22 +1,13 @@ /* VIEW-LOCATOR.hpp - access and allocation of UI component views - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/view-spec-dsl.hpp b/src/stage/interact/view-spec-dsl.hpp index c33e3f445..f1d48dcb6 100644 --- a/src/stage/interact/view-spec-dsl.hpp +++ b/src/stage/interact/view-spec-dsl.hpp @@ -1,22 +1,13 @@ /* VIEW-SPEC-DSL.hpp - configuration of view allocation patterns - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/wizard.cpp b/src/stage/interact/wizard.cpp index d0ad02252..1c0923bd2 100644 --- a/src/stage/interact/wizard.cpp +++ b/src/stage/interact/wizard.cpp @@ -1,24 +1,15 @@ /* Wizard - controller user help and assistance - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file wizard.cpp diff --git a/src/stage/interact/wizard.hpp b/src/stage/interact/wizard.hpp index 33311d5bc..cfd0323f3 100644 --- a/src/stage/interact/wizard.hpp +++ b/src/stage/interact/wizard.hpp @@ -1,22 +1,13 @@ /* WIZARD.hpp - controller user help and assistance - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/work-site-trail.cpp b/src/stage/interact/work-site-trail.cpp index 967847c03..bf0010268 100644 --- a/src/stage/interact/work-site-trail.cpp +++ b/src/stage/interact/work-site-trail.cpp @@ -1,24 +1,15 @@ /* WorkSiteTrail - manage history of visited work sites - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file work-site-trail.cpp diff --git a/src/stage/interact/work-site-trail.hpp b/src/stage/interact/work-site-trail.hpp index 23defa4b2..d32f9384a 100644 --- a/src/stage/interact/work-site-trail.hpp +++ b/src/stage/interact/work-site-trail.hpp @@ -1,22 +1,13 @@ /* WORK-SITE-TRAIL.hpp - manage history of visited work sites - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/interact/work-site.cpp b/src/stage/interact/work-site.cpp index 7c421a89e..b74b653fa 100644 --- a/src/stage/interact/work-site.cpp +++ b/src/stage/interact/work-site.cpp @@ -1,24 +1,15 @@ /* WorkSite - a place within interface space where work is done - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file work-site.cpp diff --git a/src/stage/interact/work-site.hpp b/src/stage/interact/work-site.hpp index 735d78bf9..7d0150e9f 100644 --- a/src/stage/interact/work-site.hpp +++ b/src/stage/interact/work-site.hpp @@ -1,22 +1,13 @@ /* WORK-SITE.hpp - a place within interface space where work is done - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/lumiera-light-theme-complement.css b/src/stage/lumiera-light-theme-complement.css index a355567a3..b5e01c229 100644 --- a/src/stage/lumiera-light-theme-complement.css +++ b/src/stage/lumiera-light-theme-complement.css @@ -1,8 +1,8 @@ /* lumiera-light-theme-complement.css - minimal supplement for GTK-3 light style sheet - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler Styles and Graphics of the Lumiera GUI can be used and redistributed under the the terms of the GNU General Public License version 2 or diff --git a/src/stage/lumiera.css b/src/stage/lumiera.css index 84a6d9079..90c7f3321 100644 --- a/src/stage/lumiera.css +++ b/src/stage/lumiera.css @@ -1,8 +1,8 @@ /* lumiera.css - GTK-3 style sheet for the Lumiera GUI - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler Based on the GKT-2 stylesheet by Joel Holdsworth, which in turn was based on the styling of the Ardour DAW software (Ardour.org) diff --git a/src/stage/model/canvas-hook.hpp b/src/stage/model/canvas-hook.hpp index b228b5fb6..c4e39211e 100644 --- a/src/stage/model/canvas-hook.hpp +++ b/src/stage/model/canvas-hook.hpp @@ -1,22 +1,13 @@ /* CANVAS-HOOK.hpp - abstracted attachment to a canvas with free positioning - Copyright (C) Lumiera.org - 2020, Hermann Vosseler + Copyright (C) + 2020, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/controller.hpp b/src/stage/model/controller.hpp index b8827a070..58cbd1aac 100644 --- a/src/stage/model/controller.hpp +++ b/src/stage/model/controller.hpp @@ -1,22 +1,13 @@ /* CONTROLLER.hpp - generic interface of a sub-controller - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/element-access.hpp b/src/stage/model/element-access.hpp index 9319631d7..d56c28770 100644 --- a/src/stage/model/element-access.hpp +++ b/src/stage/model/element-access.hpp @@ -1,22 +1,13 @@ /* ELEMENT-ACCESS.hpp - access to generic elements in the UI - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/expander-revealer.hpp b/src/stage/model/expander-revealer.hpp index 9341a9d88..44fc3da2a 100644 --- a/src/stage/model/expander-revealer.hpp +++ b/src/stage/model/expander-revealer.hpp @@ -1,22 +1,13 @@ /* EXPANDER-REVEALER.hpp - functor components for standard UI element actions - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/flash-deco.hpp b/src/stage/model/flash-deco.hpp index a99c3c107..82d86ba63 100644 --- a/src/stage/model/flash-deco.hpp +++ b/src/stage/model/flash-deco.hpp @@ -1,22 +1,13 @@ /* FLASH-DECO.hpp - widget decorator to add a visual flash action - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/tangible.cpp b/src/stage/model/tangible.cpp index e832fdb5b..01d2a3ffa 100644 --- a/src/stage/model/tangible.cpp +++ b/src/stage/model/tangible.cpp @@ -1,24 +1,15 @@ /* Tangible - common implementation base of all relevant interface elements - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tangible.cpp diff --git a/src/stage/model/tangible.hpp b/src/stage/model/tangible.hpp index f959a1fed..41fb96beb 100644 --- a/src/stage/model/tangible.hpp +++ b/src/stage/model/tangible.hpp @@ -1,22 +1,13 @@ /* TANGIBLE.hpp - a tangible element of the user interface - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/view-hook.hpp b/src/stage/model/view-hook.hpp index 49baf2c80..344d6df50 100644 --- a/src/stage/model/view-hook.hpp +++ b/src/stage/model/view-hook.hpp @@ -1,22 +1,13 @@ /* VIEW-HOOK.hpp - abstracted attachment to a canvas or display facility - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/w-link.hpp b/src/stage/model/w-link.hpp index 203ab10a2..005855f40 100644 --- a/src/stage/model/w-link.hpp +++ b/src/stage/model/w-link.hpp @@ -1,22 +1,13 @@ /* W-LINK.hpp - smart-link to GTK widget - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/widget.hpp b/src/stage/model/widget.hpp index d27bf950a..305684979 100644 --- a/src/stage/model/widget.hpp +++ b/src/stage/model/widget.hpp @@ -1,22 +1,13 @@ /* WIDGET.hpp - generic interface of a UI widget element - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/zoom-metric.hpp b/src/stage/model/zoom-metric.hpp index 805acc5c8..27b6b8a09 100644 --- a/src/stage/model/zoom-metric.hpp +++ b/src/stage/model/zoom-metric.hpp @@ -1,22 +1,13 @@ /* ZOOM-METRIC.hpp - mix-in to provide a DisplayMetric based on a ZoomWindow - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/model/zoom-window.cpp b/src/stage/model/zoom-window.cpp index 6205dda61..4ffe5b71d 100644 --- a/src/stage/model/zoom-window.cpp +++ b/src/stage/model/zoom-window.cpp @@ -1,24 +1,15 @@ /* ZoomWindow - generic translation from domain to screen coordinates - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file zoom-window.cpp diff --git a/src/stage/model/zoom-window.hpp b/src/stage/model/zoom-window.hpp index bed6ec1e4..f2fb0ad7a 100644 --- a/src/stage/model/zoom-window.hpp +++ b/src/stage/model/zoom-window.hpp @@ -1,22 +1,13 @@ /* ZOOM-WINDOW.hpp - generic translation from domain to screen coordinates - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/notification-service.cpp b/src/stage/notification-service.cpp index 4f82ed94f..e300dd597 100644 --- a/src/stage/notification-service.cpp +++ b/src/stage/notification-service.cpp @@ -1,24 +1,15 @@ /* NotificationService - public service allowing to push information into the GUI - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file notification-service.cpp ** Implementation of notifications and updates within the GUI. @@ -202,8 +193,8 @@ namespace stage { { (void)ifa; return - "Copyright (C) Lumiera.org\n" - " 2008 Hermann Vosseler "; + "Copyright (C)\n" + " 2008, Hermann Vosseler "; } ) , LUMIERA_INTERFACE_INLINE (license, @@ -211,19 +202,11 @@ namespace stage { { (void)ifa; return - "This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n" - "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" - "\n" - "You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"; + "**Lumiera** is free software; you can redistribute it and/or modify it\n" + "under the terms of the GNU General Public License as published by the\n" + "Free Software Foundation; either version 2 of the License, or (at your\n" + "option) any later version. See the file COPYING for further details." + ; } ) , LUMIERA_INTERFACE_INLINE (state, diff --git a/src/stage/notification-service.hpp b/src/stage/notification-service.hpp index 09b5d466f..7d88da63e 100644 --- a/src/stage/notification-service.hpp +++ b/src/stage/notification-service.hpp @@ -1,22 +1,13 @@ /* NOTIFICATION-SERVICE.hpp - public service allowing to push information into the GUI - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/output/displayer.cpp b/src/stage/output/displayer.cpp index 8f3238e2c..67f399124 100644 --- a/src/stage/output/displayer.cpp +++ b/src/stage/output/displayer.cpp @@ -1,26 +1,17 @@ /* Displayer - base class for displaying video - Copyright (C) Lumiera.org - 2000, Arne Schirmacher - 2001-2007, Dan Dennedy - 2008, Joel Holdsworth + Copyright (C) + 2000, Arne Schirmacher + 2001-2007, Dan Dennedy + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file displayer.cpp diff --git a/src/stage/output/displayer.hpp b/src/stage/output/displayer.hpp index 6e43ffe8e..9f7f6b628 100644 --- a/src/stage/output/displayer.hpp +++ b/src/stage/output/displayer.hpp @@ -1,24 +1,15 @@ /* DISPLAYER.hpp - base class for displaying video - Copyright (C) Lumiera.org - 2000, Arne Schirmacher - 2001-2007, Dan Dennedy - 2008, Joel Holdsworth + Copyright (C) + 2000, Arne Schirmacher + 2001-2007, Dan Dennedy + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/output/gdkdisplayer.cpp b/src/stage/output/gdkdisplayer.cpp index c330e5d06..96e8593e2 100644 --- a/src/stage/output/gdkdisplayer.cpp +++ b/src/stage/output/gdkdisplayer.cpp @@ -1,26 +1,17 @@ /* GgdkDisplayer - displaying video via GDK - Copyright (C) Lumiera.org - 2000, Arne Schirmacher - 2001-2007, Dan Dennedy - 2008, Joel Holdsworth + Copyright (C) + 2000, Arne Schirmacher + 2001-2007, Dan Dennedy + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file gdkdisplayer.cpp @@ -45,7 +36,7 @@ using std::endl; namespace stage { namespace output { - GdkDisplayer::GdkDisplayer (Gtk::Widget *drawing_area, + GdkDisplayer::GdkDisplayer (Gtk::Widget* drawing_area, int width, int height) : drawingArea( drawing_area ) { diff --git a/src/stage/output/gdkdisplayer.hpp b/src/stage/output/gdkdisplayer.hpp index 52bb042f3..0728c2309 100644 --- a/src/stage/output/gdkdisplayer.hpp +++ b/src/stage/output/gdkdisplayer.hpp @@ -1,24 +1,15 @@ /* GDKDISPLAYER.hpp - displaying video via GDK - Copyright (C) Lumiera.org - 2000, Arne Schirmacher - 2001-2007, Dan Dennedy - 2008, Joel Holdsworth + Copyright (C) + 2000, Arne Schirmacher + 2001-2007, Dan Dennedy + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ @@ -65,7 +56,7 @@ class GdkDisplayer * @param[in] height The height of the video image in pixels. This * value must be greater than zero. */ - GdkDisplayer( Gtk::Widget *drawing_area, int width, int height ); + GdkDisplayer (Gtk::Widget* drawing_area, int width, int height ); /** * Put an image of a given width and height with the expected input @@ -88,7 +79,7 @@ class GdkDisplayer * The widget that video will be drawn into. * @remarks This value must be a valid pointer. */ - Gtk::Widget *drawingArea; + Gtk::Widget* drawingArea; }; diff --git a/src/stage/output/xvdisplayer.cpp b/src/stage/output/xvdisplayer.cpp index a96328be3..b79f96b39 100644 --- a/src/stage/output/xvdisplayer.cpp +++ b/src/stage/output/xvdisplayer.cpp @@ -1,26 +1,17 @@ /* XvDisplayer - XVideo display - Copyright (C) Lumiera.org - 2000, Arne Schirmacher - 2001-2007, Dan Dennedy - 2008, Joel Holdsworth + Copyright (C) + 2000, Arne Schirmacher + 2001-2007, Dan Dennedy + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file xvdisplayer.cpp @@ -64,26 +55,26 @@ namespace output { window = GDK_WINDOW_XID (area_window->gobj()); display = GDK_WINDOW_XDISPLAY (area_window->gobj()); - unsigned int count; + uint count; XvAdaptorInfo* adaptorInfo; if (XvQueryAdaptors (display, window, &count, &adaptorInfo) == Success) { INFO(stage, "XvQueryAdaptors count: %d", count); - for (unsigned int n = 0; gotPort == false && n < count; ++n ) + for (uint n = 0; gotPort == false && n < count; ++n ) { // Diagnostics INFO(stage, "%s, %lu, %lu", adaptorInfo[ n ].name, adaptorInfo[ n ].base_id, adaptorInfo[ n ].num_ports - 1); - for ( unsigned int port = adaptorInfo[ n ].base_id; + for (uint port = adaptorInfo[ n ].base_id; port < adaptorInfo[ n ].base_id + adaptorInfo[ n ].num_ports; port ++ ) { if ( XvGrabPort( display, port, CurrentTime ) == Success ) { int formats; - XvImageFormatValues *list; + XvImageFormatValues* list; list = XvListImageFormats( display, port, &formats ); @@ -118,11 +109,11 @@ namespace output { if ( gotPort ) { int num; - unsigned int unum; - XvEncodingInfo *enc; + uint unum; + XvEncodingInfo* enc; XvQueryEncodings( display, grabbedPort, &unum, &enc ); - for ( unsigned int index = 0; index < unum; index ++ ) + for (uint index = 0; index < unum; ++index ) { INFO (stage, "%d: %s, %ldx%ld rate = %d/%d" , index, enc->name @@ -131,18 +122,19 @@ namespace output { , enc->rate.denominator); } - XvAttribute *xvattr = XvQueryPortAttributes (display, grabbedPort, &num); + XvAttribute* xvattr = XvQueryPortAttributes (display, grabbedPort, &num); for (int k = 0; k < num; k++ ) { if ( xvattr[k].flags & XvSettable ) { - if ( strcmp( xvattr[k].name, "XV_AUTOPAINT_COLORKEY") == 0 ) + if (strcmp (xvattr[k].name, "XV_AUTOPAINT_COLORKEY") == 0 ) { Atom val_atom = XInternAtom( display, xvattr[k].name, False ); if (XvSetPortAttribute(display, grabbedPort, val_atom, 1 ) != Success ) NOBUG_ERROR(stage, "Couldn't set Xv attribute %s\n", xvattr[k].name); } - else if ( strcmp( xvattr[k].name, "XV_COLORKEY") == 0 ) + else + if (strcmp (xvattr[k].name, "XV_COLORKEY") == 0 ) { Atom val_atom = XInternAtom( display, xvattr[k].name, False ); if ( XvSetPortAttribute( display, grabbedPort, val_atom, 0x010102 ) != Success ) @@ -167,11 +159,11 @@ namespace output { } else { - shmInfo.shmaddr = (char *) shmat (shmInfo.shmid, 0, 0); + shmInfo.shmaddr = (char*) shmat (shmInfo.shmid, 0, 0); xvImage->data = shmInfo.shmaddr; shmInfo.readOnly = 0; - if ( !XShmAttach( display, &shmInfo )) + if (!XShmAttach (display, &shmInfo)) { gotPort = false; } diff --git a/src/stage/output/xvdisplayer.hpp b/src/stage/output/xvdisplayer.hpp index d6345bee2..07856ca29 100644 --- a/src/stage/output/xvdisplayer.hpp +++ b/src/stage/output/xvdisplayer.hpp @@ -1,24 +1,15 @@ /* XVDISPLAYER.hpp - XVideo display - Copyright (C) Lumiera.org - 2000, Arne Schirmacher - 2001-2007, Dan Dennedy - 2008, Joel Holdsworth + Copyright (C) + 2000, Arne Schirmacher + 2001-2007, Dan Dennedy + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ @@ -72,7 +63,7 @@ namespace output { * @param height The height of the video image in pixels. This value * must be greater than zero. */ - XvDisplayer (Gtk::Widget *drawing_area, int width, int height); + XvDisplayer (Gtk::Widget* drawing_area, int width, int height); ~XvDisplayer(); @@ -99,18 +90,18 @@ namespace output { * The current port being used. * @remarks This value is meaningless unless gotPort is true. */ - unsigned int grabbedPort; + uint grabbedPort; /** * The widget that video will be drawn into. * @remarks This value must be a valid pointer. */ - Gtk::Widget *drawingArea; + Gtk::Widget* drawingArea; /** * The display that video will be drawn into. */ - Display *display; + Display* display; /** * The X11 window that video will be drawn into. @@ -125,7 +116,7 @@ namespace output { /** * The shared memory image object which video will be written into. */ - XvImage *xvImage; + XvImage* xvImage; /** * Info about the shared memory segment. diff --git a/src/stage/panel/assets-panel.cpp b/src/stage/panel/assets-panel.cpp index e8eaf11aa..7138c7bfb 100644 --- a/src/stage/panel/assets-panel.cpp +++ b/src/stage/panel/assets-panel.cpp @@ -1,24 +1,15 @@ /* assets-panel.cpp - Implementation of the assets panel - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file assets-panel.cpp @@ -28,8 +19,8 @@ #include "stage/gtk-base.hpp" #include "stage/panel/assets-panel.hpp" -namespace stage { -namespace panel{ +namespace stage { +namespace panel { AssetsPanel::AssetsPanel(workspace::PanelManager& panelManager, Gdl::DockItem& dockItem) : Panel(panelManager, dockItem, getTitle(), getStockID()) diff --git a/src/stage/panel/assets-panel.hpp b/src/stage/panel/assets-panel.hpp index 3ff2395de..156bbca3e 100644 --- a/src/stage/panel/assets-panel.hpp +++ b/src/stage/panel/assets-panel.hpp @@ -1,22 +1,13 @@ /* assets-panel.hpp - Definition of the assets panel - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/panel/infobox-panel.cpp b/src/stage/panel/infobox-panel.cpp index 980ad2f61..6063bfafd 100644 --- a/src/stage/panel/infobox-panel.cpp +++ b/src/stage/panel/infobox-panel.cpp @@ -1,24 +1,15 @@ /* InfoBoxPanel - A dockable panel to expose information and parameters - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file infobox-panel.cpp diff --git a/src/stage/panel/infobox-panel.hpp b/src/stage/panel/infobox-panel.hpp index fcaea652c..ea988b3ed 100644 --- a/src/stage/panel/infobox-panel.hpp +++ b/src/stage/panel/infobox-panel.hpp @@ -1,22 +1,13 @@ /* infobox-panel.hpp - A dockable panel to expose information and parameters - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/panel/panel.cpp b/src/stage/panel/panel.cpp index f2c2ecb80..15f0b4331 100644 --- a/src/stage/panel/panel.cpp +++ b/src/stage/panel/panel.cpp @@ -1,24 +1,15 @@ /* Panel - common base class for all docking panels - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file panel.cpp diff --git a/src/stage/panel/panel.hpp b/src/stage/panel/panel.hpp index 6ce6a7539..0025ce18e 100644 --- a/src/stage/panel/panel.hpp +++ b/src/stage/panel/panel.hpp @@ -1,22 +1,13 @@ /* PANEL.hpp - common base class for all docking panels - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/panel/timeline-panel.cpp b/src/stage/panel/timeline-panel.cpp index cc7c1be03..44f60dc0e 100644 --- a/src/stage/panel/timeline-panel.cpp +++ b/src/stage/panel/timeline-panel.cpp @@ -1,24 +1,15 @@ /* TimelinePanel - Dockable panel to hold the main timeline view - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline-panel.cpp diff --git a/src/stage/panel/timeline-panel.hpp b/src/stage/panel/timeline-panel.hpp index e894685a8..188dd4587 100644 --- a/src/stage/panel/timeline-panel.hpp +++ b/src/stage/panel/timeline-panel.hpp @@ -1,22 +1,13 @@ /* TIMELINE-PANEL.hpp - Dockable panel to hold the main timeline view - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/panel/viewer-panel.cpp b/src/stage/panel/viewer-panel.cpp index e60abeb15..dfd4f25b9 100644 --- a/src/stage/panel/viewer-panel.cpp +++ b/src/stage/panel/viewer-panel.cpp @@ -1,24 +1,15 @@ /* ViewerPanel - Dockable panel to hold the video display widgets and controls - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file viewer-panel.cpp diff --git a/src/stage/panel/viewer-panel.hpp b/src/stage/panel/viewer-panel.hpp index 665a50270..2dd2b36e2 100644 --- a/src/stage/panel/viewer-panel.hpp +++ b/src/stage/panel/viewer-panel.hpp @@ -1,22 +1,13 @@ /* VIEWER-PANEL.hpp - Dockable panel to hold the video display widgets and controls - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ @@ -33,8 +24,8 @@ #include "stage/widget/video-display-widget.hpp" #include "stage/ctrl/playback-controller.hpp" -namespace stage { -namespace panel{ +namespace stage { +namespace panel { /** * A panel to display the video output. diff --git a/src/stage/setting/asset-controller.cpp b/src/stage/setting/asset-controller.cpp index 89b8b33f7..a4ae01f06 100644 --- a/src/stage/setting/asset-controller.cpp +++ b/src/stage/setting/asset-controller.cpp @@ -1,24 +1,15 @@ /* AssetController - asset management UI top level - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file asset-controller.cpp diff --git a/src/stage/setting/asset-controller.hpp b/src/stage/setting/asset-controller.hpp index ce868ef95..6e54938d9 100644 --- a/src/stage/setting/asset-controller.hpp +++ b/src/stage/setting/asset-controller.hpp @@ -1,22 +1,13 @@ /* ASSET-CONTROLLER.hpp - asset management UI top level - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/style-scheme.cpp b/src/stage/style-scheme.cpp index 9ad2fab7f..c7e46d378 100644 --- a/src/stage/style-scheme.cpp +++ b/src/stage/style-scheme.cpp @@ -1,24 +1,15 @@ /* StyleScheme - magic keys to access uniform styling scheme - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file style-scheme.hpp diff --git a/src/stage/style-scheme.hpp b/src/stage/style-scheme.hpp index 8c3c20574..1343ac808 100644 --- a/src/stage/style-scheme.hpp +++ b/src/stage/style-scheme.hpp @@ -1,22 +1,13 @@ /* STYLE_SCHEME.hpp - magic keys to access uniform styling scheme - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/body-canvas-widget.cpp b/src/stage/timeline/body-canvas-widget.cpp index 67c3346ac..7f0df4d2a 100644 --- a/src/stage/timeline/body-canvas-widget.cpp +++ b/src/stage/timeline/body-canvas-widget.cpp @@ -1,24 +1,15 @@ /* BodyCanvasWidget - custom drawing canvas to display the timeline body - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file body-canvas-widget.cpp diff --git a/src/stage/timeline/body-canvas-widget.hpp b/src/stage/timeline/body-canvas-widget.hpp index 72d9cba66..3918b3628 100644 --- a/src/stage/timeline/body-canvas-widget.hpp +++ b/src/stage/timeline/body-canvas-widget.hpp @@ -1,22 +1,13 @@ /* BODY-CANVAS-WIDGET.hpp - custom drawing canvas to display the timeline body - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/clip-presenter.hpp b/src/stage/timeline/clip-presenter.hpp index e0de28001..73a13ce11 100644 --- a/src/stage/timeline/clip-presenter.hpp +++ b/src/stage/timeline/clip-presenter.hpp @@ -1,22 +1,13 @@ /* CLIP-PRESENTER.hpp - presentation control element for a clip within the timeline - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/clip-widget.cpp b/src/stage/timeline/clip-widget.cpp index 6b7a6ef46..77b5d062d 100644 --- a/src/stage/timeline/clip-widget.cpp +++ b/src/stage/timeline/clip-widget.cpp @@ -1,24 +1,15 @@ /* ClipWidget - display of a clip in timeline or media bin view - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file clip-widget.cpp diff --git a/src/stage/timeline/clip-widget.hpp b/src/stage/timeline/clip-widget.hpp index 002040ffe..e6ebcb1b1 100644 --- a/src/stage/timeline/clip-widget.hpp +++ b/src/stage/timeline/clip-widget.hpp @@ -1,22 +1,13 @@ /* CLIP-WIDGET.hpp - display of a clip in timeline or media bin view - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/display-evaluation.cpp b/src/stage/timeline/display-evaluation.cpp index bacf6f7fa..4a6256cfd 100644 --- a/src/stage/timeline/display-evaluation.cpp +++ b/src/stage/timeline/display-evaluation.cpp @@ -1,24 +1,15 @@ /* DisplayEvaluation - recursive interwoven timeline layout allocation - Copyright (C) Lumiera.org - 2020, Hermann Vosseler + Copyright (C) + 2020, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file display-evaluation.cpp diff --git a/src/stage/timeline/display-evaluation.hpp b/src/stage/timeline/display-evaluation.hpp index 9bda8c1c3..b3acc5828 100644 --- a/src/stage/timeline/display-evaluation.hpp +++ b/src/stage/timeline/display-evaluation.hpp @@ -1,22 +1,13 @@ /* DISPLAY-EVALUATION.hpp - recursive interwoven timeline layout allocation - Copyright (C) Lumiera.org - 2020, Hermann Vosseler + Copyright (C) + 2020, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/display-manager.cpp b/src/stage/timeline/display-manager.cpp index 1abe63cbe..6d62a55cd 100644 --- a/src/stage/timeline/display-manager.cpp +++ b/src/stage/timeline/display-manager.cpp @@ -1,24 +1,15 @@ /* DisplayManager - abstraction to translate model structure and extension into screen layout - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file display-manager.cpp diff --git a/src/stage/timeline/display-manager.hpp b/src/stage/timeline/display-manager.hpp index 541710d01..abcfe9985 100644 --- a/src/stage/timeline/display-manager.hpp +++ b/src/stage/timeline/display-manager.hpp @@ -1,22 +1,13 @@ /* DISPLAY-MANAGER.hpp - abstraction to translate model structure and extension into screen layout - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/header-pane-widget.hpp b/src/stage/timeline/header-pane-widget.hpp index 153345284..7f2afa66a 100644 --- a/src/stage/timeline/header-pane-widget.hpp +++ b/src/stage/timeline/header-pane-widget.hpp @@ -1,22 +1,13 @@ /* HEADER-PANE-WIDGET.hpp - display pane for track headers within the timeline - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/marker-widget.cpp b/src/stage/timeline/marker-widget.cpp index 65670f1b0..54e4e83c1 100644 --- a/src/stage/timeline/marker-widget.cpp +++ b/src/stage/timeline/marker-widget.cpp @@ -1,24 +1,15 @@ /* MarkerWidget - display of a marker in timeline or within clips - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file marker-widget.cpp diff --git a/src/stage/timeline/marker-widget.hpp b/src/stage/timeline/marker-widget.hpp index 88bb4a471..e7a5eaef6 100644 --- a/src/stage/timeline/marker-widget.hpp +++ b/src/stage/timeline/marker-widget.hpp @@ -1,22 +1,13 @@ /* MARKER-WIDGET.hpp - display of a marker in timeline or within clips - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/navigator-widget.cpp b/src/stage/timeline/navigator-widget.cpp index 197df6a81..2d525255a 100644 --- a/src/stage/timeline/navigator-widget.cpp +++ b/src/stage/timeline/navigator-widget.cpp @@ -1,24 +1,15 @@ /* NavigatorWidget - display of navigation controls in the timeline UI - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file navigator-widget.cpp diff --git a/src/stage/timeline/navigator-widget.hpp b/src/stage/timeline/navigator-widget.hpp index ed59f1a5b..72a1dd275 100644 --- a/src/stage/timeline/navigator-widget.hpp +++ b/src/stage/timeline/navigator-widget.hpp @@ -1,22 +1,13 @@ /* NAVIGATOR-WIDGET.hpp - display of navigation controls in the timeline UI - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/patchbay-widget.cpp b/src/stage/timeline/patchbay-widget.cpp index 5fc62882c..e1d22c36e 100644 --- a/src/stage/timeline/patchbay-widget.cpp +++ b/src/stage/timeline/patchbay-widget.cpp @@ -1,24 +1,15 @@ /* PatchbayWidget - display of the patchbay to control track placement parameters - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file patchbay-widget.cpp diff --git a/src/stage/timeline/patchbay-widget.hpp b/src/stage/timeline/patchbay-widget.hpp index 5a2209ec9..aa7d879c0 100644 --- a/src/stage/timeline/patchbay-widget.hpp +++ b/src/stage/timeline/patchbay-widget.hpp @@ -1,22 +1,13 @@ /* PATCHBAY-WIDGET.hpp - display of the patchbay to control track placement parameters - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/pipe-widget.cpp b/src/stage/timeline/pipe-widget.cpp index 644c4b9d3..b16b6dd57 100644 --- a/src/stage/timeline/pipe-widget.cpp +++ b/src/stage/timeline/pipe-widget.cpp @@ -1,24 +1,15 @@ /* PipeWidget - display of pipe configuration with effect processing components - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file pipe-widget.cpp diff --git a/src/stage/timeline/pipe-widget.hpp b/src/stage/timeline/pipe-widget.hpp index 5ec07ae76..920db335b 100644 --- a/src/stage/timeline/pipe-widget.hpp +++ b/src/stage/timeline/pipe-widget.hpp @@ -1,22 +1,13 @@ /* PIPE-WIDGET.hpp - display of pipe configuration with effect processing components - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/ruler-track.cpp b/src/stage/timeline/ruler-track.cpp index ad7751b8c..a48f54573 100644 --- a/src/stage/timeline/ruler-track.cpp +++ b/src/stage/timeline/ruler-track.cpp @@ -1,24 +1,15 @@ /* RulerTrack - track body area to show overview and timecode and markers - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ruler-track.cpp diff --git a/src/stage/timeline/ruler-track.hpp b/src/stage/timeline/ruler-track.hpp index 5649a0fbd..6c8e66d89 100644 --- a/src/stage/timeline/ruler-track.hpp +++ b/src/stage/timeline/ruler-track.hpp @@ -1,22 +1,13 @@ /* RULER-TRACK.hpp - track body area to show overview and timecode and markers - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/ruler-widget.cpp b/src/stage/timeline/ruler-widget.cpp index 60111baee..c8d1a87e3 100644 --- a/src/stage/timeline/ruler-widget.cpp +++ b/src/stage/timeline/ruler-widget.cpp @@ -1,24 +1,15 @@ /* RulerWidget - display of the time ruler at the top of the timeline UI - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ruler-widget.cpp diff --git a/src/stage/timeline/ruler-widget.hpp b/src/stage/timeline/ruler-widget.hpp index 158c8070d..9cedf57ef 100644 --- a/src/stage/timeline/ruler-widget.hpp +++ b/src/stage/timeline/ruler-widget.hpp @@ -1,22 +1,13 @@ /* RULER-WIDGET.hpp - display of the time ruler at the top of the timeline UI - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/stave-bracket-widget.cpp b/src/stage/timeline/stave-bracket-widget.cpp index 7ebbde256..e18a59d8c 100644 --- a/src/stage/timeline/stave-bracket-widget.cpp +++ b/src/stage/timeline/stave-bracket-widget.cpp @@ -1,24 +1,15 @@ /* StaveBracketWidget - track body area to show overview and timecode and markers - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file stave-bracket-widget.cpp diff --git a/src/stage/timeline/stave-bracket-widget.hpp b/src/stage/timeline/stave-bracket-widget.hpp index 4586abd1a..8f71fb7f1 100644 --- a/src/stage/timeline/stave-bracket-widget.hpp +++ b/src/stage/timeline/stave-bracket-widget.hpp @@ -1,22 +1,13 @@ /* STAVE-BRACKET-WIDGET.hpp - draw connector to indicate nested track structure - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/timeline-controller.cpp b/src/stage/timeline/timeline-controller.cpp index b30a37a56..d791d981a 100644 --- a/src/stage/timeline/timeline-controller.cpp +++ b/src/stage/timeline/timeline-controller.cpp @@ -1,24 +1,15 @@ /* TimelineController - coordinate operation of timeline display - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline-controller.cpp diff --git a/src/stage/timeline/timeline-controller.hpp b/src/stage/timeline/timeline-controller.hpp index 84c28e851..691fd3c87 100644 --- a/src/stage/timeline/timeline-controller.hpp +++ b/src/stage/timeline/timeline-controller.hpp @@ -1,22 +1,13 @@ /* TIMELINE-CONTROLLER.hpp - coordinate operation of timeline display - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/timeline-gui.cpp b/src/stage/timeline/timeline-gui.cpp index 026e19b3c..ca9789f55 100644 --- a/src/stage/timeline/timeline-gui.cpp +++ b/src/stage/timeline/timeline-gui.cpp @@ -1,24 +1,15 @@ /* TimelineGui - top-level anchor point and placeholder for "the timeline" - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline-gui.cpp diff --git a/src/stage/timeline/timeline-gui.hpp b/src/stage/timeline/timeline-gui.hpp index 2e42af8c2..a07ea329b 100644 --- a/src/stage/timeline/timeline-gui.hpp +++ b/src/stage/timeline/timeline-gui.hpp @@ -1,22 +1,13 @@ /* TIMELINE-GUI.hpp - top-level anchor point and placeholder for "the timeline" - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/timeline-layout.cpp b/src/stage/timeline/timeline-layout.cpp index c1c32a3f7..f98ac61dd 100644 --- a/src/stage/timeline/timeline-layout.cpp +++ b/src/stage/timeline/timeline-layout.cpp @@ -1,24 +1,15 @@ /* TimelineLayout - global timeline layout management and display control - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline-layout.cpp diff --git a/src/stage/timeline/timeline-layout.hpp b/src/stage/timeline/timeline-layout.hpp index f9f2f6fd0..739eb5578 100644 --- a/src/stage/timeline/timeline-layout.hpp +++ b/src/stage/timeline/timeline-layout.hpp @@ -1,22 +1,13 @@ /* TIMELINE-LAYOUT.hpp - global timeline layout management and display control - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/timeline-widget-empty.hpp b/src/stage/timeline/timeline-widget-empty.hpp index ebf4a2fee..b456b57a5 100644 --- a/src/stage/timeline/timeline-widget-empty.hpp +++ b/src/stage/timeline/timeline-widget-empty.hpp @@ -1,22 +1,13 @@ /* TIMELINE-WIDGET-EMPTY.hpp - placeholder widget for a missing timeline - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/timeline-widget.cpp b/src/stage/timeline/timeline-widget.cpp index 3e12c9412..21b17b469 100644 --- a/src/stage/timeline/timeline-widget.cpp +++ b/src/stage/timeline/timeline-widget.cpp @@ -1,24 +1,15 @@ /* TimelineWidget - custom widget for timeline display of the project - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline/timeline-widget.cpp diff --git a/src/stage/timeline/timeline-widget.hpp b/src/stage/timeline/timeline-widget.hpp index 5c92b48d8..137f78faa 100644 --- a/src/stage/timeline/timeline-widget.hpp +++ b/src/stage/timeline/timeline-widget.hpp @@ -1,22 +1,13 @@ /* TIMELINE-WIDGET.hpp - custom widget for timeline display of the project - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/track-body.cpp b/src/stage/timeline/track-body.cpp index 2efc2834f..62e1bd775 100644 --- a/src/stage/timeline/track-body.cpp +++ b/src/stage/timeline/track-body.cpp @@ -1,24 +1,15 @@ /* TrackBody - track body area within the timeline display canvas - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file track-body.cpp diff --git a/src/stage/timeline/track-body.hpp b/src/stage/timeline/track-body.hpp index 1b4fc46bd..474c56951 100644 --- a/src/stage/timeline/track-body.hpp +++ b/src/stage/timeline/track-body.hpp @@ -1,22 +1,13 @@ /* TRACK-BODY.hpp - track body area within the timeline display canvas - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/track-head-widget.cpp b/src/stage/timeline/track-head-widget.cpp index 0cb941364..6ed389706 100644 --- a/src/stage/timeline/track-head-widget.cpp +++ b/src/stage/timeline/track-head-widget.cpp @@ -1,24 +1,15 @@ /* TrackHeadWidget - display of track heads within the timeline - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file track-head-widget.cpp diff --git a/src/stage/timeline/track-head-widget.hpp b/src/stage/timeline/track-head-widget.hpp index 9814790b1..0231ce1e0 100644 --- a/src/stage/timeline/track-head-widget.hpp +++ b/src/stage/timeline/track-head-widget.hpp @@ -1,22 +1,13 @@ /* TRACK-HEAD-WIDGET.hpp - display of track heads within the timeline - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/track-presenter.hpp b/src/stage/timeline/track-presenter.hpp index fbdf929de..c7362fbfc 100644 --- a/src/stage/timeline/track-presenter.hpp +++ b/src/stage/timeline/track-presenter.hpp @@ -1,22 +1,13 @@ /* TRACK-PRESENTER.hpp - presentation control element for a track within the timeline - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/track-profile.hpp b/src/stage/timeline/track-profile.hpp index 28fab5ddb..041e211f6 100644 --- a/src/stage/timeline/track-profile.hpp +++ b/src/stage/timeline/track-profile.hpp @@ -1,22 +1,13 @@ /* TRACK-PROFILE.hpp - building the 3D profile of tracks for timeline presentation - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/timeline/transition-widget.cpp b/src/stage/timeline/transition-widget.cpp index 100ec0ae9..739fe2849 100644 --- a/src/stage/timeline/transition-widget.cpp +++ b/src/stage/timeline/transition-widget.cpp @@ -1,24 +1,15 @@ /* TransitionWidget - display of a transition or blend of media elements - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file transition-widget.cpp diff --git a/src/stage/timeline/transition-widget.hpp b/src/stage/timeline/transition-widget.hpp index 9af182afa..9b25cd7a5 100644 --- a/src/stage/timeline/transition-widget.hpp +++ b/src/stage/timeline/transition-widget.hpp @@ -1,22 +1,13 @@ /* TRANSITION-WIDGET.hpp - display of a transition or blend of media elements - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/ui-bus.cpp b/src/stage/ui-bus.cpp index 84ecf04ca..6c1a87de7 100644 --- a/src/stage/ui-bus.cpp +++ b/src/stage/ui-bus.cpp @@ -1,25 +1,16 @@ /* UiBus - UI model and control backbone - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2015, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-bus.cpp diff --git a/src/stage/ui-bus.hpp b/src/stage/ui-bus.hpp index 102ec2ab3..a9b9dbbcd 100644 --- a/src/stage/ui-bus.hpp +++ b/src/stage/ui-bus.hpp @@ -1,23 +1,14 @@ /* UI-BUS.hpp - UI model and control backbone - Copyright (C) Lumiera.org - 2009, Joel Holdsworth - 2015, Hermann Vosseler + Copyright (C) + 2009, Joel Holdsworth + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/bin-widget.cpp b/src/stage/widget/bin-widget.cpp index 0b5bd7ad6..a7d629877 100644 --- a/src/stage/widget/bin-widget.cpp +++ b/src/stage/widget/bin-widget.cpp @@ -1,24 +1,15 @@ /* BinWidget - display of a media bin - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file bin-widget.cpp diff --git a/src/stage/widget/bin-widget.hpp b/src/stage/widget/bin-widget.hpp index 1a1d50dfc..ec7772936 100644 --- a/src/stage/widget/bin-widget.hpp +++ b/src/stage/widget/bin-widget.hpp @@ -1,22 +1,13 @@ /* BIN-WIDGET.hpp - display of a media bin - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/button-bar.cpp b/src/stage/widget/button-bar.cpp index 56531de94..3ededa5f5 100644 --- a/src/stage/widget/button-bar.cpp +++ b/src/stage/widget/button-bar.cpp @@ -1,24 +1,15 @@ /* ButtonBar - button bar widget - Copyright (C) Lumiera.org - 2009, Joel Holdsworth + Copyright (C) + 2009, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file button-bar.cpp diff --git a/src/stage/widget/button-bar.hpp b/src/stage/widget/button-bar.hpp index 8d55dba56..8ba260563 100644 --- a/src/stage/widget/button-bar.hpp +++ b/src/stage/widget/button-bar.hpp @@ -1,22 +1,13 @@ /* BUTTON-BAR.hpp - button bar widget - Copyright (C) Lumiera.org - 2009, Joel Holdsworth + Copyright (C) + 2009, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/element-box-widget.cpp b/src/stage/widget/element-box-widget.cpp index 7070c000a..3b368e3ac 100644 --- a/src/stage/widget/element-box-widget.cpp +++ b/src/stage/widget/element-box-widget.cpp @@ -1,24 +1,15 @@ /* ElementBoxWidget - fundamental UI building block to represent a placed element - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file element-box-widget.cpp diff --git a/src/stage/widget/element-box-widget.hpp b/src/stage/widget/element-box-widget.hpp index f142eb053..6e8c2a4a7 100644 --- a/src/stage/widget/element-box-widget.hpp +++ b/src/stage/widget/element-box-widget.hpp @@ -1,22 +1,13 @@ /* ELEMENT-BOX-WIDGET.hpp - fundamental UI building block to represent a placed element - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/error-log-display.hpp b/src/stage/widget/error-log-display.hpp index 4a8f2203d..5a51b1598 100644 --- a/src/stage/widget/error-log-display.hpp +++ b/src/stage/widget/error-log-display.hpp @@ -1,22 +1,13 @@ /* ERROR-LOG-DISPLAY.hpp - display of error messages in a text box - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/menu-button.cpp b/src/stage/widget/menu-button.cpp index 9a7747ecd..0f5d67b4f 100644 --- a/src/stage/widget/menu-button.cpp +++ b/src/stage/widget/menu-button.cpp @@ -1,24 +1,15 @@ /* MenuButton - button widget to invoke a menu - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file menu-button.cpp diff --git a/src/stage/widget/menu-button.hpp b/src/stage/widget/menu-button.hpp index e1a90e1d1..39aae7936 100644 --- a/src/stage/widget/menu-button.hpp +++ b/src/stage/widget/menu-button.hpp @@ -1,22 +1,13 @@ /* MENU-BUTTON.hpp - button widget to invoke a menu - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/mini-button.hpp b/src/stage/widget/mini-button.hpp index b8de88b05..4b31a98e9 100644 --- a/src/stage/widget/mini-button.hpp +++ b/src/stage/widget/mini-button.hpp @@ -1,22 +1,13 @@ /* MINI-BUTTON.hpp - a tool button-like widget - Copyright (C) Lumiera.org - 2009, Joel Holdsworth + Copyright (C) + 2009, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/mixer-widget.cpp b/src/stage/widget/mixer-widget.cpp index b5c5f58fb..3015461df 100644 --- a/src/stage/widget/mixer-widget.cpp +++ b/src/stage/widget/mixer-widget.cpp @@ -1,24 +1,15 @@ /* MixerWidget - display of a channel mixer control - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mixer-widget.cpp diff --git a/src/stage/widget/mixer-widget.hpp b/src/stage/widget/mixer-widget.hpp index 1c58ef23a..205979fdc 100644 --- a/src/stage/widget/mixer-widget.hpp +++ b/src/stage/widget/mixer-widget.hpp @@ -1,22 +1,13 @@ /* MIXER-WIDGET.hpp - display of a channel mixer control - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/panel-bar.cpp b/src/stage/widget/panel-bar.cpp index 84380c142..3b2a23f3f 100644 --- a/src/stage/widget/panel-bar.cpp +++ b/src/stage/widget/panel-bar.cpp @@ -1,24 +1,15 @@ /* PanelBar - container to place widgets into the GDL dock attachment area - Copyright (C) Lumiera.org - 2009, Joel Holdsworth + Copyright (C) + 2009, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file panel-bar.cpp diff --git a/src/stage/widget/panel-bar.hpp b/src/stage/widget/panel-bar.hpp index 3945ab60a..91852f4c9 100644 --- a/src/stage/widget/panel-bar.hpp +++ b/src/stage/widget/panel-bar.hpp @@ -1,22 +1,13 @@ /* PANEL-BAR.hpp - container to place widgets into the GDL dock attachment area - Copyright (C) Lumiera.org - 2009, Joel Holdsworth + Copyright (C) + 2009, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/player-widget.cpp b/src/stage/widget/player-widget.cpp index c347c8133..86c4ba451 100644 --- a/src/stage/widget/player-widget.cpp +++ b/src/stage/widget/player-widget.cpp @@ -1,24 +1,15 @@ /* PlayerWidget - display of a playback control element - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file player-widget.cpp diff --git a/src/stage/widget/player-widget.hpp b/src/stage/widget/player-widget.hpp index acbecca27..9ecceeb1f 100644 --- a/src/stage/widget/player-widget.hpp +++ b/src/stage/widget/player-widget.hpp @@ -1,22 +1,13 @@ /* PLAYER-WIDGET.hpp - display of a playback control element - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/switchboard-widget.cpp b/src/stage/widget/switchboard-widget.cpp index 304795842..f4ed047d2 100644 --- a/src/stage/widget/switchboard-widget.cpp +++ b/src/stage/widget/switchboard-widget.cpp @@ -1,24 +1,15 @@ /* SwitchboardWidget - display of a video viewer control switchboard - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file switchboard-widget.cpp diff --git a/src/stage/widget/switchboard-widget.hpp b/src/stage/widget/switchboard-widget.hpp index 94439b713..a6da914e3 100644 --- a/src/stage/widget/switchboard-widget.hpp +++ b/src/stage/widget/switchboard-widget.hpp @@ -1,22 +1,13 @@ /* SWITCHBOARD-WIDGET.hpp - display of a video viewer control switchboard - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/timecode-widget.cpp b/src/stage/widget/timecode-widget.cpp index 76952f446..59d0a5377 100644 --- a/src/stage/widget/timecode-widget.cpp +++ b/src/stage/widget/timecode-widget.cpp @@ -4,24 +4,15 @@ Copyright (C) Ardour.org 1999, Paul Davis - Copyright (C) Lumiera.org + Copyright (C) 2010, Stefan Kangas TimeCode::ModeChanged; - const unsigned int TimeCode::field_length[(int) TimeCode::VFrames+1] = { + const uint TimeCode::field_length[(int) TimeCode::VFrames+1] = { 2, /* SMPTE_Hours */ 2, /* SMPTE_Minutes */ 2, /* SMPTE_Seconds */ @@ -696,7 +687,7 @@ namespace widget { // Initialise with a fresh new string if (field != VFrames) { - for (unsigned int xn = 0; xn < field_length[field] - 1; ++xn) + for (uint xn = 0; xn < field_length[field] - 1; ++xn) new_text += '0'; } else diff --git a/src/stage/widget/timecode-widget.hpp b/src/stage/widget/timecode-widget.hpp index c36000197..99fa35c4d 100644 --- a/src/stage/widget/timecode-widget.hpp +++ b/src/stage/widget/timecode-widget.hpp @@ -4,23 +4,14 @@ Copyright (C) Ardour.org 1999, Paul Davis - Copyright (C) Lumiera.org + Copyright (C) 2010, Stefan Kangas + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline-state.cpp diff --git a/src/stage/widget/timeline/timeline-state.hpp b/src/stage/widget/timeline/timeline-state.hpp index 1560bd978..dfea33e5e 100644 --- a/src/stage/widget/timeline/timeline-state.hpp +++ b/src/stage/widget/timeline/timeline-state.hpp @@ -1,22 +1,13 @@ /* TIMELINE-STATE.hpp - timeline presentation state holder - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/timeline/timeline-zoom-scale.cpp b/src/stage/widget/timeline/timeline-zoom-scale.cpp index a00d5abe3..a092a140f 100644 --- a/src/stage/widget/timeline/timeline-zoom-scale.cpp +++ b/src/stage/widget/timeline/timeline-zoom-scale.cpp @@ -1,24 +1,15 @@ /* TimelineZoomScale - widget to control timeline zoom scale - Copyright (C) Lumiera.org - 2011, Michael R. Fisher + Copyright (C) + 2011, Michael R. Fisher - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline-zoom-scale.cpp diff --git a/src/stage/widget/timeline/timeline-zoom-scale.hpp b/src/stage/widget/timeline/timeline-zoom-scale.hpp index a1df2191b..d6bb74306 100644 --- a/src/stage/widget/timeline/timeline-zoom-scale.hpp +++ b/src/stage/widget/timeline/timeline-zoom-scale.hpp @@ -1,22 +1,13 @@ /* TIMELINE-ZOOM-SCALE.hpp - widget to control timeline zoom scale - Copyright (C) Lumiera.org - 2011, Michael R. Fisher + Copyright (C) + 2011, Michael R. Fisher - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/widget/video-display-widget.cpp b/src/stage/widget/video-display-widget.cpp index 4955e6ffc..0ce7ebaaa 100644 --- a/src/stage/widget/video-display-widget.cpp +++ b/src/stage/widget/video-display-widget.cpp @@ -1,24 +1,15 @@ /* VideoDisplayWidget - Implementation of the video viewer widget - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file video-display-widget.cpp diff --git a/src/stage/widget/video-display-widget.hpp b/src/stage/widget/video-display-widget.hpp index 1e4217af6..75cd584fb 100644 --- a/src/stage/widget/video-display-widget.hpp +++ b/src/stage/widget/video-display-widget.hpp @@ -1,22 +1,13 @@ /* VIDEO-DISPLAY-WIDGET.hpp - GUI widget for displaying video - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/workspace/dock-area.cpp b/src/stage/workspace/dock-area.cpp index c227e8d70..c0e823641 100644 --- a/src/stage/workspace/dock-area.cpp +++ b/src/stage/workspace/dock-area.cpp @@ -1,25 +1,16 @@ /* DockArea - maintain a docking area within the WorkspaceWindow - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2018, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dock-area.cpp diff --git a/src/stage/workspace/dock-area.hpp b/src/stage/workspace/dock-area.hpp index f323807a9..30c6ac01b 100644 --- a/src/stage/workspace/dock-area.hpp +++ b/src/stage/workspace/dock-area.hpp @@ -1,23 +1,14 @@ /* DOCK-AREA.hpp - maintain a docking area within the WorkspaceWindow - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2018, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/workspace/panel-manager.cpp b/src/stage/workspace/panel-manager.cpp index 78c487a2a..faa38dc6b 100644 --- a/src/stage/workspace/panel-manager.cpp +++ b/src/stage/workspace/panel-manager.cpp @@ -1,24 +1,15 @@ /* PanelManager - management of dockable GDL panels - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file panel-manager.cpp diff --git a/src/stage/workspace/panel-manager.hpp b/src/stage/workspace/panel-manager.hpp index dfbbab21e..90029632a 100644 --- a/src/stage/workspace/panel-manager.hpp +++ b/src/stage/workspace/panel-manager.hpp @@ -1,22 +1,13 @@ /* PANEL-MANAGER.hpp - management of dockable GDL panels - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/workspace/ui-style.cpp b/src/stage/workspace/ui-style.cpp index 36920d137..61acdeafa 100644 --- a/src/stage/workspace/ui-style.cpp +++ b/src/stage/workspace/ui-style.cpp @@ -1,25 +1,16 @@ /* UiStyle - manage coherent UI styling - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2017, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-style.cpp diff --git a/src/stage/workspace/ui-style.hpp b/src/stage/workspace/ui-style.hpp index 25c0c4e5c..600e1366f 100644 --- a/src/stage/workspace/ui-style.hpp +++ b/src/stage/workspace/ui-style.hpp @@ -1,23 +1,14 @@ /* UI-STYLE.hpp - manage coherent UI styling - Copyright (C) Lumiera.org - 2008, Joel Holdsworth - 2017, Hermann Vosseler + Copyright (C) + 2008, Joel Holdsworth + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/stage/workspace/workspace-window.cpp b/src/stage/workspace/workspace-window.cpp index f82562087..2e1ec5b8d 100644 --- a/src/stage/workspace/workspace-window.cpp +++ b/src/stage/workspace/workspace-window.cpp @@ -1,24 +1,15 @@ /* WorkspaceWindow - the main workspace window of the GUI - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file workspace-window.cpp diff --git a/src/stage/workspace/workspace-window.hpp b/src/stage/workspace/workspace-window.hpp index 803ae84d2..e92eaf213 100644 --- a/src/stage/workspace/workspace-window.hpp +++ b/src/stage/workspace/workspace-window.hpp @@ -1,22 +1,13 @@ /* WORKSPACE-WINDOW.hpp - the main workspace window of the GUI - Copyright (C) Lumiera.org - 2008, Joel Holdsworth + Copyright (C) + 2008, Joel Holdsworth - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset.cpp b/src/steam/asset.cpp index 4ae65fc58..f644ac43e 100644 --- a/src/steam/asset.cpp +++ b/src/steam/asset.cpp @@ -1,24 +1,15 @@ /* Asset - Superinterface: bookkeeping view of "things" present in the session - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file asset.cpp diff --git a/src/steam/asset.hpp b/src/steam/asset.hpp index b125d7e3b..5d93f978c 100644 --- a/src/steam/asset.hpp +++ b/src/steam/asset.hpp @@ -1,22 +1,13 @@ /* ASSET.hpp - Superinterface: bookkeeping view of "things" present in the session - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/buildinstruct.hpp b/src/steam/asset/buildinstruct.hpp index 80d7ab8ee..3e429c390 100644 --- a/src/steam/asset/buildinstruct.hpp +++ b/src/steam/asset/buildinstruct.hpp @@ -1,22 +1,13 @@ /* BUILDINSTRUCT.hpp - Instructions for building some configuration of render nodes. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/category.cpp b/src/steam/asset/category.cpp index 3c77eab54..7599b70d8 100644 --- a/src/steam/asset/category.cpp +++ b/src/steam/asset/category.cpp @@ -1,24 +1,15 @@ /* Category - tree like classification of Assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file category.cpp diff --git a/src/steam/asset/category.hpp b/src/steam/asset/category.hpp index 618cd6c62..538b1e189 100644 --- a/src/steam/asset/category.hpp +++ b/src/steam/asset/category.hpp @@ -1,22 +1,13 @@ /* CATEGORY.hpp - tree like classification of Assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/clip.cpp b/src/steam/asset/clip.cpp index 33eae0fcc..30a3f0cf9 100644 --- a/src/steam/asset/clip.cpp +++ b/src/steam/asset/clip.cpp @@ -1,24 +1,15 @@ /* Clip(Asset) - bookkeeping (asset) view of a media clip. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file asset/clip.cpp diff --git a/src/steam/asset/clip.hpp b/src/steam/asset/clip.hpp index 217e943a0..f3665fca6 100644 --- a/src/steam/asset/clip.hpp +++ b/src/steam/asset/clip.hpp @@ -1,22 +1,13 @@ /* CLIP.hpp - bookkeeping (asset) view of a media clip. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/codec.hpp b/src/steam/asset/codec.hpp index ebbab5868..3fbdcc17c 100644 --- a/src/steam/asset/codec.hpp +++ b/src/steam/asset/codec.hpp @@ -1,22 +1,13 @@ /* CODEC.hpp - description of some media data decoder or encoder facility - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/compoundmedia.hpp b/src/steam/asset/compoundmedia.hpp index ee266527c..3bec3859d 100644 --- a/src/steam/asset/compoundmedia.hpp +++ b/src/steam/asset/compoundmedia.hpp @@ -1,22 +1,13 @@ /* COMPOUNDMEDIA.hpp - multichannel media - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/dataset.hpp b/src/steam/asset/dataset.hpp index f65f07091..fc3c8e551 100644 --- a/src/steam/asset/dataset.hpp +++ b/src/steam/asset/dataset.hpp @@ -1,22 +1,13 @@ /* DATASET.hpp - meta asset describing a collection of control data - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/db.hpp b/src/steam/asset/db.hpp index 25b884b2c..cc632c960 100644 --- a/src/steam/asset/db.hpp +++ b/src/steam/asset/db.hpp @@ -1,22 +1,13 @@ /* DB.hpp - registry holding known Asset instances. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/effect.cpp b/src/steam/asset/effect.cpp index 588d340db..f6509bdb8 100644 --- a/src/steam/asset/effect.cpp +++ b/src/steam/asset/effect.cpp @@ -1,24 +1,15 @@ /* Effect(Asset) - Effect or media processing component - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file asset/effect.cpp diff --git a/src/steam/asset/effect.hpp b/src/steam/asset/effect.hpp index 4f5a57181..0ff06b63b 100644 --- a/src/steam/asset/effect.hpp +++ b/src/steam/asset/effect.hpp @@ -1,22 +1,13 @@ /* EFFECT.hpp - Effect or media processing component - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/inventory.hpp b/src/steam/asset/inventory.hpp index b81fed3d8..133a4d42a 100644 --- a/src/steam/asset/inventory.hpp +++ b/src/steam/asset/inventory.hpp @@ -1,22 +1,13 @@ /* INVENTORY.hpp - viewing an Typed-ID registration group as meta asset - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/media.cpp b/src/steam/asset/media.cpp index 1a7ca221c..4d7c0071b 100644 --- a/src/steam/asset/media.cpp +++ b/src/steam/asset/media.cpp @@ -1,24 +1,15 @@ /* Media(Asset) - key abstraction: media-like assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file media.cpp diff --git a/src/steam/asset/media.hpp b/src/steam/asset/media.hpp index e75fcf945..eebc0ec77 100644 --- a/src/steam/asset/media.hpp +++ b/src/steam/asset/media.hpp @@ -1,22 +1,13 @@ /* MEDIA.hpp - key abstraction: media-like assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/meta.cpp b/src/steam/asset/meta.cpp index 84fdaa049..f507efa12 100644 --- a/src/steam/asset/meta.cpp +++ b/src/steam/asset/meta.cpp @@ -1,24 +1,15 @@ /* Meta(Asset) - key abstraction: metadata and organisational asset - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file asset/meta.cpp diff --git a/src/steam/asset/meta.hpp b/src/steam/asset/meta.hpp index cbe5b92bd..0ec14bb93 100644 --- a/src/steam/asset/meta.hpp +++ b/src/steam/asset/meta.hpp @@ -1,22 +1,13 @@ /* META.hpp - key abstraction: metadata and organisational asset - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/meta/error-log.cpp b/src/steam/asset/meta/error-log.cpp index 106e2336c..36acb3a2c 100644 --- a/src/steam/asset/meta/error-log.cpp +++ b/src/steam/asset/meta/error-log.cpp @@ -1,24 +1,15 @@ /* ErrorLog - Entity to collect and persist incident records - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file error-log.cpp diff --git a/src/steam/asset/meta/error-log.hpp b/src/steam/asset/meta/error-log.hpp index 6b12fc159..810c4eb09 100644 --- a/src/steam/asset/meta/error-log.hpp +++ b/src/steam/asset/meta/error-log.hpp @@ -1,22 +1,13 @@ /* ERROR-LOG.hpp - Entity to collect and persist incident records - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/meta/time-grid.cpp b/src/steam/asset/meta/time-grid.cpp index d65ae93a9..02c3c3d4b 100644 --- a/src/steam/asset/meta/time-grid.cpp +++ b/src/steam/asset/meta/time-grid.cpp @@ -1,24 +1,15 @@ /* TimeGrid - reference scale for quantised time - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-grid.cpp diff --git a/src/steam/asset/meta/time-grid.hpp b/src/steam/asset/meta/time-grid.hpp index ee92243fc..3a5bae2c4 100644 --- a/src/steam/asset/meta/time-grid.hpp +++ b/src/steam/asset/meta/time-grid.hpp @@ -1,22 +1,13 @@ /* TIME-GRID.hpp - reference scale for quantised time - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/pipe.cpp b/src/steam/asset/pipe.cpp index c6a05fc3f..826c4d8a4 100644 --- a/src/steam/asset/pipe.cpp +++ b/src/steam/asset/pipe.cpp @@ -1,24 +1,15 @@ /* Pipe - structural asset denoting a processing pipe to generate media output - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file pipe.cpp diff --git a/src/steam/asset/pipe.hpp b/src/steam/asset/pipe.hpp index 66dea9e82..d1ad00362 100644 --- a/src/steam/asset/pipe.hpp +++ b/src/steam/asset/pipe.hpp @@ -1,22 +1,13 @@ /* PIPE.hpp - structural asset denoting a processing pipe generating media output - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/preview.cpp b/src/steam/asset/preview.cpp index 78b7874f7..376862035 100644 --- a/src/steam/asset/preview.cpp +++ b/src/steam/asset/preview.cpp @@ -1,24 +1,15 @@ /* Preview(Asset) - alternative version of the media data, probably with lower resolution - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file preview.cpp diff --git a/src/steam/asset/preview.hpp b/src/steam/asset/preview.hpp index 1b3ba1f7f..216deaa42 100644 --- a/src/steam/asset/preview.hpp +++ b/src/steam/asset/preview.hpp @@ -1,22 +1,13 @@ /* PREVIEW.hpp - alternative version of the media data, probably with lower resolution - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/proc.cpp b/src/steam/asset/proc.cpp index 540022dc9..a82ba88a2 100644 --- a/src/steam/asset/proc.cpp +++ b/src/steam/asset/proc.cpp @@ -1,24 +1,15 @@ /* Proc(Asset) - key abstraction: data-processing assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file proc.cpp diff --git a/src/steam/asset/proc.hpp b/src/steam/asset/proc.hpp index 8e55f37c7..de971672a 100644 --- a/src/steam/asset/proc.hpp +++ b/src/steam/asset/proc.hpp @@ -1,22 +1,13 @@ /* PROC.hpp - key abstraction: data-processing assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/procpatt.cpp b/src/steam/asset/procpatt.cpp index 34c6b34dd..0df9922ba 100644 --- a/src/steam/asset/procpatt.cpp +++ b/src/steam/asset/procpatt.cpp @@ -1,24 +1,15 @@ /* ProcPatt - template for building some render processing network - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file procpatt.cpp diff --git a/src/steam/asset/procpatt.hpp b/src/steam/asset/procpatt.hpp index 8e2c349c1..5cdb8c5de 100644 --- a/src/steam/asset/procpatt.hpp +++ b/src/steam/asset/procpatt.hpp @@ -1,22 +1,13 @@ /* PROCPATT.hpp - template for building some render processing network - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/sequence.cpp b/src/steam/asset/sequence.cpp index eb64b5ea3..fc542401c 100644 --- a/src/steam/asset/sequence.cpp +++ b/src/steam/asset/sequence.cpp @@ -1,24 +1,15 @@ /* Sequence - Compound of MObjects placed within a tree of tracks. Building block of the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file asset/sequence.cpp diff --git a/src/steam/asset/sequence.hpp b/src/steam/asset/sequence.hpp index 55e585f6c..eff7cb20f 100644 --- a/src/steam/asset/sequence.hpp +++ b/src/steam/asset/sequence.hpp @@ -1,22 +1,13 @@ /* SEQUENCE.hpp - Compound of MObjects placed within a tree of tracks. Building block of the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/struct-factory-impl.hpp b/src/steam/asset/struct-factory-impl.hpp index 3badb8108..4bba75235 100644 --- a/src/steam/asset/struct-factory-impl.hpp +++ b/src/steam/asset/struct-factory-impl.hpp @@ -1,22 +1,13 @@ /* STRUCT-FACTORY-IMPL.hpp - crating structural assets (impl details) - Copyright (C) Lumiera.org + Copyright (C) 2008,2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/struct-scheme.hpp b/src/steam/asset/struct-scheme.hpp index d997066cf..47d844c11 100644 --- a/src/steam/asset/struct-scheme.hpp +++ b/src/steam/asset/struct-scheme.hpp @@ -1,22 +1,13 @@ /* STRUCT-SCHEME.hpp - naming and designation scheme for structural assets - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/struct.cpp b/src/steam/asset/struct.cpp index 3037f08b1..743e04454 100644 --- a/src/steam/asset/struct.cpp +++ b/src/steam/asset/struct.cpp @@ -1,24 +1,15 @@ /* Struct(Asset) - key abstraction: structural asset - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file struct.cpp diff --git a/src/steam/asset/struct.hpp b/src/steam/asset/struct.hpp index a759d169d..b3d08b4b2 100644 --- a/src/steam/asset/struct.hpp +++ b/src/steam/asset/struct.hpp @@ -1,22 +1,13 @@ /* STRUCT.hpp - key abstraction: structural asset - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/timeline.cpp b/src/steam/asset/timeline.cpp index d0172df53..4195fc045 100644 --- a/src/steam/asset/timeline.cpp +++ b/src/steam/asset/timeline.cpp @@ -1,24 +1,15 @@ /* Timeline - independent top-level element of the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline.cpp diff --git a/src/steam/asset/timeline.hpp b/src/steam/asset/timeline.hpp index 52b482ba1..2d69fd406 100644 --- a/src/steam/asset/timeline.hpp +++ b/src/steam/asset/timeline.hpp @@ -1,22 +1,13 @@ /* TIMELINE.hpp - independent top-level element of the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/typed-id.hpp b/src/steam/asset/typed-id.hpp index e749108fc..094efe81c 100644 --- a/src/steam/asset/typed-id.hpp +++ b/src/steam/asset/typed-id.hpp @@ -1,22 +1,13 @@ /* TYPED-ID.hpp - registration service for ID to type association - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/typed-lookup.cpp b/src/steam/asset/typed-lookup.cpp index f7baa18f4..9cf529c76 100644 --- a/src/steam/asset/typed-lookup.cpp +++ b/src/steam/asset/typed-lookup.cpp @@ -1,24 +1,15 @@ /* TypedLookup - implementing a registration service for ID to type association - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typed-lookup.cpp diff --git a/src/steam/asset/unknown.cpp b/src/steam/asset/unknown.cpp index bf5442edb..a6513ab6b 100644 --- a/src/steam/asset/unknown.cpp +++ b/src/steam/asset/unknown.cpp @@ -1,24 +1,15 @@ /* Unknown - placeholder for unknown or unavailable media source - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file unknown.cpp diff --git a/src/steam/asset/unknown.hpp b/src/steam/asset/unknown.hpp index cc42e1649..3ae32abfe 100644 --- a/src/steam/asset/unknown.hpp +++ b/src/steam/asset/unknown.hpp @@ -1,22 +1,13 @@ /* UNKNOWN.hpp - placeholder for unknown or unavailable media source - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/asset/viewer.cpp b/src/steam/asset/viewer.cpp index c97e73bc4..bddeaad97 100644 --- a/src/steam/asset/viewer.cpp +++ b/src/steam/asset/viewer.cpp @@ -1,24 +1,15 @@ /* Viewer - asset corresponding to a viewer element in the GUI - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file viewer.cpp diff --git a/src/steam/asset/viewer.hpp b/src/steam/asset/viewer.hpp index 170363054..a5dd8431b 100644 --- a/src/steam/asset/viewer.hpp +++ b/src/steam/asset/viewer.hpp @@ -1,22 +1,13 @@ /* VIEWER.hpp - asset corresponding to a viewer element in the GUI - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/assetmanager.cpp b/src/steam/assetmanager.cpp index d02bba9ba..19b382bba 100644 --- a/src/steam/assetmanager.cpp +++ b/src/steam/assetmanager.cpp @@ -1,24 +1,15 @@ /* AssetManager - Facade for the Asset subsystem - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file assetmanager.cpp diff --git a/src/steam/assetmanager.hpp b/src/steam/assetmanager.hpp index 563afbc1a..4c450e8e3 100644 --- a/src/steam/assetmanager.hpp +++ b/src/steam/assetmanager.hpp @@ -1,22 +1,13 @@ /* ASSETMANAGER.hpp - Facade for the Asset subsystem - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/cmd.hpp b/src/steam/cmd.hpp index 7516428d8..cf00608a4 100644 --- a/src/steam/cmd.hpp +++ b/src/steam/cmd.hpp @@ -1,22 +1,13 @@ /* CMD.hpp - Steam Command definition keys - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/cmd/meta-cmd.cpp b/src/steam/cmd/meta-cmd.cpp index 913f507cc..92918b753 100644 --- a/src/steam/cmd/meta-cmd.cpp +++ b/src/steam/cmd/meta-cmd.cpp @@ -1,24 +1,15 @@ /* MetaCmd - actual steam command scripts for internal meta and control activities - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file meta-cmd.cpp diff --git a/src/steam/cmd/scope-cmd.cpp b/src/steam/cmd/scope-cmd.cpp index 5f3d889ad..f97dd7838 100644 --- a/src/steam/cmd/scope-cmd.cpp +++ b/src/steam/cmd/scope-cmd.cpp @@ -1,24 +1,15 @@ /* ScopeCmd - actual steam command scripts for actions within model scope - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scope-cmd.cpp diff --git a/src/steam/cmd/sequence-cmd.cpp b/src/steam/cmd/sequence-cmd.cpp index 71f82c45a..ef97e6342 100644 --- a/src/steam/cmd/sequence-cmd.cpp +++ b/src/steam/cmd/sequence-cmd.cpp @@ -1,24 +1,15 @@ /* SequenceCmd - actual steam command scripts for actions operating within a sequence - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sequence-cmd.cpp diff --git a/src/steam/cmd/session-cmd.cpp b/src/steam/cmd/session-cmd.cpp index b3956eee3..eca936920 100644 --- a/src/steam/cmd/session-cmd.cpp +++ b/src/steam/cmd/session-cmd.cpp @@ -1,24 +1,15 @@ /* SessionCmd - actual steam command scripts for session-global actions - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-cmd.cpp diff --git a/src/steam/common.hpp b/src/steam/common.hpp index 3e30ddad1..7ff496872 100644 --- a/src/steam/common.hpp +++ b/src/steam/common.hpp @@ -2,23 +2,14 @@ COMMON.hpp - global definitions and common types for the Steam-Layer - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/config-resolver.cpp b/src/steam/config-resolver.cpp index 86c854f2c..fc733c367 100644 --- a/src/steam/config-resolver.cpp +++ b/src/steam/config-resolver.cpp @@ -1,24 +1,15 @@ /* ConfigResolver - concrete setup for rule based configuration - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config-resolver.cpp diff --git a/src/steam/config-resolver.hpp b/src/steam/config-resolver.hpp index 53e5f588b..414cd23a6 100644 --- a/src/steam/config-resolver.hpp +++ b/src/steam/config-resolver.hpp @@ -1,23 +1,14 @@ /* CONFIG-RESOLVER.hpp - concrete setup for rule based configuration - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler 2012 - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/argument-erasure.hpp b/src/steam/control/argument-erasure.hpp index 9ec62e5e9..2998cd06e 100644 --- a/src/steam/control/argument-erasure.hpp +++ b/src/steam/control/argument-erasure.hpp @@ -1,22 +1,13 @@ /* ARGUMENT-ERASURE.hpp - helper for passing on a dynamic typed argument tuple - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/argument-tuple-accept.hpp b/src/steam/control/argument-tuple-accept.hpp index 271437534..697050a3d 100644 --- a/src/steam/control/argument-tuple-accept.hpp +++ b/src/steam/control/argument-tuple-accept.hpp @@ -1,22 +1,13 @@ /* ARGUMENT-TUPLE-ACCEPT.hpp - helper template providing a bind(...) member function - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-closure.hpp b/src/steam/control/command-closure.hpp index ae27db964..af830bee9 100644 --- a/src/steam/control/command-closure.hpp +++ b/src/steam/control/command-closure.hpp @@ -1,22 +1,13 @@ /* COMMAND-CLOSURE.hpp - defining execution targets and parameters for commands - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-def.hpp b/src/steam/control/command-def.hpp index c4db54c24..a936f95fd 100644 --- a/src/steam/control/command-def.hpp +++ b/src/steam/control/command-def.hpp @@ -1,22 +1,13 @@ /* COMMAND-DEF.hpp - defining and binding a Steam-Layer command - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-dispatch.hpp b/src/steam/control/command-dispatch.hpp index 32c2c98a7..61bb6ce76 100644 --- a/src/steam/control/command-dispatch.hpp +++ b/src/steam/control/command-dispatch.hpp @@ -1,22 +1,13 @@ /* COMMAND-DISPATCH.hpp - Interface to enqueue and dispatch command messages - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-impl-clone-builder.hpp b/src/steam/control/command-impl-clone-builder.hpp index 6122c709f..26d82cbb6 100644 --- a/src/steam/control/command-impl-clone-builder.hpp +++ b/src/steam/control/command-impl-clone-builder.hpp @@ -1,22 +1,13 @@ /* COMMAND-IMPL-CLONE-BUILDER.hpp - Cloning command implementation without disclosing concrete type - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-impl.hpp b/src/steam/control/command-impl.hpp index 437c7a8c4..711bec8e1 100644 --- a/src/steam/control/command-impl.hpp +++ b/src/steam/control/command-impl.hpp @@ -1,22 +1,13 @@ /* COMMAND-IMPL.hpp - Steam-Layer command implementation (top level) - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-instance-manager.hpp b/src/steam/control/command-instance-manager.hpp index 71c030c1b..2d92350fb 100644 --- a/src/steam/control/command-instance-manager.hpp +++ b/src/steam/control/command-instance-manager.hpp @@ -1,22 +1,13 @@ /* COMMAND-INSTANCE-MANAGER.hpp - Service to manage command instances for actual invocation - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-invocation.hpp b/src/steam/control/command-invocation.hpp index 2ec9e3811..88a850e52 100644 --- a/src/steam/control/command-invocation.hpp +++ b/src/steam/control/command-invocation.hpp @@ -1,22 +1,13 @@ /* COMMAND-INVOCATION.hpp - shortcuts and helpers for calling Steam-Layer commands - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-mutation.hpp b/src/steam/control/command-mutation.hpp index d61abfe7b..0af556dc6 100644 --- a/src/steam/control/command-mutation.hpp +++ b/src/steam/control/command-mutation.hpp @@ -1,22 +1,13 @@ /* COMMAND-MUTATION.hpp - functor encapsulating the actual operation of steam-Command - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-op-closure.hpp b/src/steam/control/command-op-closure.hpp index e04040482..1805a38d0 100644 --- a/src/steam/control/command-op-closure.hpp +++ b/src/steam/control/command-op-closure.hpp @@ -1,22 +1,13 @@ /* COMMAND-OP-CLOSURE.hpp - implementation the closure for a command operation - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-queue.hpp b/src/steam/control/command-queue.hpp index 82f467f66..a8e83c4b4 100644 --- a/src/steam/control/command-queue.hpp +++ b/src/steam/control/command-queue.hpp @@ -1,22 +1,13 @@ /* COMMAND-QUEUE.hpp - organise ordering of commands within SteamDispatcher - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-registry.hpp b/src/steam/control/command-registry.hpp index 938328180..a7136b7d3 100644 --- a/src/steam/control/command-registry.hpp +++ b/src/steam/control/command-registry.hpp @@ -1,22 +1,13 @@ /* COMMAND-REGISTRY.hpp - steam-Command object registration and storage management - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-setup.cpp b/src/steam/control/command-setup.cpp index a5d12476f..630029a54 100644 --- a/src/steam/control/command-setup.cpp +++ b/src/steam/control/command-setup.cpp @@ -1,24 +1,15 @@ /* CommandSetup - Implementation of command registration and instance management - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-setup.cpp diff --git a/src/steam/control/command-setup.hpp b/src/steam/control/command-setup.hpp index dc4b4f8db..54eeb0672 100644 --- a/src/steam/control/command-setup.hpp +++ b/src/steam/control/command-setup.hpp @@ -1,22 +1,13 @@ /* COMMAND-INSTANCE-SETUP.hpp - Key abstraction for steam/edit operations and UNDO management - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-signature.hpp b/src/steam/control/command-signature.hpp index f3050ce24..371394e26 100644 --- a/src/steam/control/command-signature.hpp +++ b/src/steam/control/command-signature.hpp @@ -1,22 +1,13 @@ /* COMMAND-SIGNATURE.hpp - deriving suitable command function signatures - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-simple-closure.hpp b/src/steam/control/command-simple-closure.hpp index d9d3cb8f5..317d807b9 100644 --- a/src/steam/control/command-simple-closure.hpp +++ b/src/steam/control/command-simple-closure.hpp @@ -1,22 +1,13 @@ /* COMMAND-SIMPLE-CLOSURE.hpp - demo implementation of command closure - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command-storage-holder.hpp b/src/steam/control/command-storage-holder.hpp index e6c7fa6d2..e7154f03d 100644 --- a/src/steam/control/command-storage-holder.hpp +++ b/src/steam/control/command-storage-holder.hpp @@ -1,22 +1,13 @@ /* COMMAND-STORAGE-HOLDER.hpp - specifically typed container for storage of command arguments - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/command.cpp b/src/steam/control/command.cpp index 97d759a5e..39513b9d8 100644 --- a/src/steam/control/command.cpp +++ b/src/steam/control/command.cpp @@ -1,24 +1,15 @@ /* Command - Key abstraction for steam/edit operations and UNDO management - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command.cpp diff --git a/src/steam/control/command.hpp b/src/steam/control/command.hpp index 5ad33ed92..759835b35 100644 --- a/src/steam/control/command.hpp +++ b/src/steam/control/command.hpp @@ -1,22 +1,13 @@ /* COMMAND.hpp - Key abstraction for steam/edit operations and UNDO management - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/handling-pattern.cpp b/src/steam/control/handling-pattern.cpp index 37d6a8651..1cdb37e5e 100644 --- a/src/steam/control/handling-pattern.cpp +++ b/src/steam/control/handling-pattern.cpp @@ -1,24 +1,15 @@ /* HandlingPattern - A skeleton for executing commands, including standard implementations - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file handling-pattern.cpp diff --git a/src/steam/control/handling-pattern.hpp b/src/steam/control/handling-pattern.hpp index fec783f30..07c2f0fb6 100644 --- a/src/steam/control/handling-pattern.hpp +++ b/src/steam/control/handling-pattern.hpp @@ -1,22 +1,13 @@ /* HANDLILNG-PATTERN.hpp - A skeleton for executing commands, including standard implementations - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/handling-patterns.hpp b/src/steam/control/handling-patterns.hpp index 0f0684462..8742b5827 100644 --- a/src/steam/control/handling-patterns.hpp +++ b/src/steam/control/handling-patterns.hpp @@ -1,22 +1,13 @@ /* HANDLILNG-PATTERNS.hpp - Collection of predefined command handling patterns - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/looper.hpp b/src/steam/control/looper.hpp index b0117b333..c713e07b3 100644 --- a/src/steam/control/looper.hpp +++ b/src/steam/control/looper.hpp @@ -1,22 +1,13 @@ /* LOOPER.hpp - steam dispatcher loop and timing control logic - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/media-impl-lib.hpp b/src/steam/control/media-impl-lib.hpp index 5a6a2893c..e797469c5 100644 --- a/src/steam/control/media-impl-lib.hpp +++ b/src/steam/control/media-impl-lib.hpp @@ -1,22 +1,13 @@ /* MEDIA-IMPL-LIB.hpp - facade interface to access an external media handling library - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/memento-tie.hpp b/src/steam/control/memento-tie.hpp index 76aa6c3f6..209799e77 100644 --- a/src/steam/control/memento-tie.hpp +++ b/src/steam/control/memento-tie.hpp @@ -1,22 +1,13 @@ /* MEMENTO-TIE.hpp - capturing and providing state for undoing commands - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/pathmanager.cpp b/src/steam/control/pathmanager.cpp index 32977465a..fe1f69332 100644 --- a/src/steam/control/pathmanager.cpp +++ b/src/steam/control/pathmanager.cpp @@ -1,24 +1,15 @@ /* PathManager - Manager for deciding the actual render strategy - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file pathmanager.cpp diff --git a/src/steam/control/pathmanager.hpp b/src/steam/control/pathmanager.hpp index 767661694..944e3f38e 100644 --- a/src/steam/control/pathmanager.hpp +++ b/src/steam/control/pathmanager.hpp @@ -1,22 +1,13 @@ /* PATHMANAGER.hpp - Manager for deciding the actual render strategy - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/session-command-interface-proxy.cpp b/src/steam/control/session-command-interface-proxy.cpp index d9d625bf9..32595db90 100644 --- a/src/steam/control/session-command-interface-proxy.cpp +++ b/src/steam/control/session-command-interface-proxy.cpp @@ -1,24 +1,15 @@ /* SessionCommand(Proxy) - public service to invoke commands on the session - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ diff --git a/src/steam/control/session-command-service.cpp b/src/steam/control/session-command-service.cpp index 14ccfaf59..58216509f 100644 --- a/src/steam/control/session-command-service.cpp +++ b/src/steam/control/session-command-service.cpp @@ -1,24 +1,15 @@ /* SessionCommandService - public service to invoke commands on the session - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-command-service.cpp ** Implementation of command invocation on the Session interface. @@ -151,8 +142,8 @@ namespace control { { (void)ifa; return - "Copyright (C) Lumiera.org\n" - " 2016 Hermann Vosseler "; + "Copyright (C)\n" + " 2016, Hermann Vosseler "; } ) , LUMIERA_INTERFACE_INLINE (license, @@ -160,19 +151,11 @@ namespace control { { (void)ifa; return - "This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n" - "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" - "\n" - "You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"; + "**Lumiera** is free software; you can redistribute it and/or modify it\n" + "under the terms of the GNU General Public License as published by the\n" + "Free Software Foundation; either version 2 of the License, or (at your\n" + "option) any later version. See the file COPYING for further details." + ; } ) , LUMIERA_INTERFACE_INLINE (state, diff --git a/src/steam/control/session-command-service.hpp b/src/steam/control/session-command-service.hpp index d6d2a24f1..2d158b996 100644 --- a/src/steam/control/session-command-service.hpp +++ b/src/steam/control/session-command-service.hpp @@ -1,22 +1,13 @@ /* SESSION-COMMAND-SERVICE.hpp - public service to invoke commands on the session - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/steam-dispatcher.cpp b/src/steam/control/steam-dispatcher.cpp index 60aef090d..abe38bea7 100644 --- a/src/steam/control/steam-dispatcher.cpp +++ b/src/steam/control/steam-dispatcher.cpp @@ -1,24 +1,15 @@ /* SteamDispatcher - Steam-Layer command dispatch and execution - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file steam-dispatcher.cpp diff --git a/src/steam/control/steam-dispatcher.hpp b/src/steam/control/steam-dispatcher.hpp index 568ecd668..95ef51a9e 100644 --- a/src/steam/control/steam-dispatcher.hpp +++ b/src/steam/control/steam-dispatcher.hpp @@ -1,22 +1,13 @@ /* STEAM-DISPATCHER.hpp - Steam-Layer command dispatch and execution - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/stypemanager.cpp b/src/steam/control/stypemanager.cpp index d7be4e9c0..1c74b9ccf 100644 --- a/src/steam/control/stypemanager.cpp +++ b/src/steam/control/stypemanager.cpp @@ -1,24 +1,15 @@ /* STypeManager - entry point for dealing with media stream types - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file stypemanager.cpp diff --git a/src/steam/control/stypemanager.hpp b/src/steam/control/stypemanager.hpp index e94da8bd9..7a7a854de 100644 --- a/src/steam/control/stypemanager.hpp +++ b/src/steam/control/stypemanager.hpp @@ -1,22 +1,13 @@ /* STYPEMANAGER.hpp - entry point for dealing with media stream types - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/control/styperegistry.hpp b/src/steam/control/styperegistry.hpp index cc12caa73..1a02b9d81 100644 --- a/src/steam/control/styperegistry.hpp +++ b/src/steam/control/styperegistry.hpp @@ -1,22 +1,13 @@ /* STYPEREGISTRY.hpp - implementation of the registry for stream type descriptors - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/buffer-local-tag.hpp b/src/steam/engine/buffer-local-tag.hpp index 4349cdef4..0486e6052 100644 --- a/src/steam/engine/buffer-local-tag.hpp +++ b/src/steam/engine/buffer-local-tag.hpp @@ -1,22 +1,13 @@ /* BUFFER-LOCAL-TAG.hpp - opaque data for BufferProvider implementation - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/buffer-metadata.hpp b/src/steam/engine/buffer-metadata.hpp index 3a51743ee..c640cb8a8 100644 --- a/src/steam/engine/buffer-metadata.hpp +++ b/src/steam/engine/buffer-metadata.hpp @@ -1,22 +1,13 @@ /* BUFFER-METADATA.hpp - internal metadata for data buffer providers - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/buffer-provider.cpp b/src/steam/engine/buffer-provider.cpp index 53e6a33a3..711854b00 100644 --- a/src/steam/engine/buffer-provider.cpp +++ b/src/steam/engine/buffer-provider.cpp @@ -1,24 +1,15 @@ /* BufferProvider - Abstraction for Buffer management during playback/render - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file buffer-provider.cpp diff --git a/src/steam/engine/buffer-provider.hpp b/src/steam/engine/buffer-provider.hpp index bd5d90a0b..6f24bc314 100644 --- a/src/steam/engine/buffer-provider.hpp +++ b/src/steam/engine/buffer-provider.hpp @@ -1,22 +1,13 @@ /* BUFFER-PROVIDER.hpp - Abstraction for Buffer management during playback/render - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/buffhandle-attach.hpp b/src/steam/engine/buffhandle-attach.hpp index a6f9d6f44..b5c5b7c56 100644 --- a/src/steam/engine/buffhandle-attach.hpp +++ b/src/steam/engine/buffhandle-attach.hpp @@ -1,22 +1,13 @@ /* BUFFHANDLE-ATTACH.hpp - Buffer handle extension to attach objects into the buffer - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/buffhandle.hpp b/src/steam/engine/buffhandle.hpp index c44919fa3..5880a00d5 100644 --- a/src/steam/engine/buffhandle.hpp +++ b/src/steam/engine/buffhandle.hpp @@ -1,22 +1,13 @@ /* BUFFHANDLE.hpp - Buffer handling support for the render engine - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/bufftable.hpp b/src/steam/engine/bufftable.hpp index 8de8504a4..f9b78fb28 100644 --- a/src/steam/engine/bufftable.hpp +++ b/src/steam/engine/bufftable.hpp @@ -1,22 +1,13 @@ /* BUFFTABLE.hpp - Table of buffer pointers to be used by the render nodes - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/calc-stream.hpp b/src/steam/engine/calc-stream.hpp index 118d6108f..5633f6231 100644 --- a/src/steam/engine/calc-stream.hpp +++ b/src/steam/engine/calc-stream.hpp @@ -1,22 +1,13 @@ /* CALC-STREAM.hpp - abstraction representing a series of scheduled calculations - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/channel-descriptor.hpp b/src/steam/engine/channel-descriptor.hpp index 343421d43..88dc10180 100644 --- a/src/steam/engine/channel-descriptor.hpp +++ b/src/steam/engine/channel-descriptor.hpp @@ -1,22 +1,13 @@ /* CHANNEL-DESCRIPTOR.hpp - Channel / Buffer type representation for the engine - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/connectivity-obsolete.hpp b/src/steam/engine/connectivity-obsolete.hpp index 0a9876a82..dbac4afdc 100644 --- a/src/steam/engine/connectivity-obsolete.hpp +++ b/src/steam/engine/connectivity-obsolete.hpp @@ -1,22 +1,13 @@ /* PROC-NODE.hpp - Key abstraction of the Render Engine: a Processing Node - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/diagnostic-buffer-provider.cpp b/src/steam/engine/diagnostic-buffer-provider.cpp index 088d45a05..3319b4f16 100644 --- a/src/steam/engine/diagnostic-buffer-provider.cpp +++ b/src/steam/engine/diagnostic-buffer-provider.cpp @@ -1,24 +1,15 @@ /* DiagnosticBufferProvider - helper for testing against the BufferProvider interface - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diagnostic-buffer-provider.cpp diff --git a/src/steam/engine/diagnostic-buffer-provider.hpp b/src/steam/engine/diagnostic-buffer-provider.hpp index 77e648523..dc2178bd2 100644 --- a/src/steam/engine/diagnostic-buffer-provider.hpp +++ b/src/steam/engine/diagnostic-buffer-provider.hpp @@ -1,22 +1,13 @@ /* DIAGNOSTIC-BUFFER-PROVIDER.hpp - helper for testing against the BufferProvider interface - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/dispatch-table.cpp b/src/steam/engine/dispatch-table.cpp index 814c515b9..6a041a580 100644 --- a/src/steam/engine/dispatch-table.cpp +++ b/src/steam/engine/dispatch-table.cpp @@ -1,24 +1,15 @@ /* DispatchTable - implementation of frame job creation - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dispatch-table.cpp diff --git a/src/steam/engine/dispatch-table.hpp b/src/steam/engine/dispatch-table.hpp index 0de6b616a..49dbb7006 100644 --- a/src/steam/engine/dispatch-table.hpp +++ b/src/steam/engine/dispatch-table.hpp @@ -1,22 +1,13 @@ /* DISPATCH-TABLE.hpp - implementation of frame job creation - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/dispatcher.cpp b/src/steam/engine/dispatcher.cpp index 2ada8f6ca..7c31e49f7 100644 --- a/src/steam/engine/dispatcher.cpp +++ b/src/steam/engine/dispatcher.cpp @@ -1,24 +1,15 @@ /* Dispatcher - translating calculation streams into frame jobs - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dispatcher.cpp diff --git a/src/steam/engine/dispatcher.hpp b/src/steam/engine/dispatcher.hpp index 10d333ab1..8411faf1f 100644 --- a/src/steam/engine/dispatcher.hpp +++ b/src/steam/engine/dispatcher.hpp @@ -1,22 +1,13 @@ /* DISPATCHER.hpp - translating calculation streams into frame jobs - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/engine-ctx-facilities.cpp b/src/steam/engine/engine-ctx-facilities.cpp index 9c86f4d82..512570739 100644 --- a/src/steam/engine/engine-ctx-facilities.cpp +++ b/src/steam/engine/engine-ctx-facilities.cpp @@ -1,24 +1,15 @@ /* EngineCtxFacilities - Implementation of global render engine operational services - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file engine-ctx-facilities.hpp diff --git a/src/steam/engine/engine-ctx-facilities.hpp b/src/steam/engine/engine-ctx-facilities.hpp index edb5456c8..4774006b0 100644 --- a/src/steam/engine/engine-ctx-facilities.hpp +++ b/src/steam/engine/engine-ctx-facilities.hpp @@ -1,22 +1,13 @@ /* ENGINE-CTX-FACILITIES.hpp - Implementation of global render engine operational services - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/engine-ctx.hpp b/src/steam/engine/engine-ctx.hpp index ec559a4d9..dffb43faa 100644 --- a/src/steam/engine/engine-ctx.hpp +++ b/src/steam/engine/engine-ctx.hpp @@ -1,22 +1,13 @@ /* ENGINE-CTX.hpp - Services and parameters used globally within the render engine - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/engine-diagnostics.hpp b/src/steam/engine/engine-diagnostics.hpp index 46287decb..25b6597bf 100644 --- a/src/steam/engine/engine-diagnostics.hpp +++ b/src/steam/engine/engine-diagnostics.hpp @@ -1,22 +1,13 @@ /* ENGINE-DIAGNOSTICS.hpp - diagnostic facility to investigate engine operation - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/engine-service-mock.cpp b/src/steam/engine/engine-service-mock.cpp index 376182373..71d7fc664 100644 --- a/src/steam/engine/engine-service-mock.cpp +++ b/src/steam/engine/engine-service-mock.cpp @@ -1,24 +1,15 @@ /* EngineServiceMock - dummy render engine implementation for test/development - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file engine-service-mock.cpp diff --git a/src/steam/engine/engine-service-mock.hpp b/src/steam/engine/engine-service-mock.hpp index 31c4d74ee..f03a118ef 100644 --- a/src/steam/engine/engine-service-mock.hpp +++ b/src/steam/engine/engine-service-mock.hpp @@ -1,22 +1,13 @@ /* ENGINE-SERVICE-MOCK.hpp - dummy render engine implementation for test/development - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/engine-service.cpp b/src/steam/engine/engine-service.cpp index b0f09a139..a438cf6ea 100644 --- a/src/steam/engine/engine-service.cpp +++ b/src/steam/engine/engine-service.cpp @@ -1,24 +1,15 @@ /* EngineService - primary service access point for using the renderengine - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file engine-service.cpp diff --git a/src/steam/engine/engine-service.hpp b/src/steam/engine/engine-service.hpp index ab214c331..7d752f568 100644 --- a/src/steam/engine/engine-service.hpp +++ b/src/steam/engine/engine-service.hpp @@ -1,22 +1,13 @@ /* ENGINE-SERVICE.hpp - primary service access point for using the renderengine - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/exit-node.hpp b/src/steam/engine/exit-node.hpp index 945979440..d595b27a7 100644 --- a/src/steam/engine/exit-node.hpp +++ b/src/steam/engine/exit-node.hpp @@ -1,22 +1,13 @@ /* EXIT-NODE.hpp - top-level node of the render network to pull generated media - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/feed-manifold-obsolete.hpp b/src/steam/engine/feed-manifold-obsolete.hpp index 1a4e9f12f..ad7fa2df7 100644 --- a/src/steam/engine/feed-manifold-obsolete.hpp +++ b/src/steam/engine/feed-manifold-obsolete.hpp @@ -1,23 +1,14 @@ /* FEED-MANIFOLD.hpp - data feed connection system for render nodes - Copyright (C) Lumiera.org - 2008, Hermann Vosseler - 2023, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/feed-manifold.hpp b/src/steam/engine/feed-manifold.hpp index d2af98772..a6176feca 100644 --- a/src/steam/engine/feed-manifold.hpp +++ b/src/steam/engine/feed-manifold.hpp @@ -1,23 +1,14 @@ /* FEED-MANIFOLD.hpp - data feed connection system for render nodes - Copyright (C) Lumiera.org - 2008, Hermann Vosseler - 2023, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/job-planning.hpp b/src/steam/engine/job-planning.hpp index beb49788a..288e888bd 100644 --- a/src/steam/engine/job-planning.hpp +++ b/src/steam/engine/job-planning.hpp @@ -1,22 +1,13 @@ /* JOB-PLANNING.hpp - steps to prepare and build render jobs - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/job-ticket.cpp b/src/steam/engine/job-ticket.cpp index b18536f7f..0396aa513 100644 --- a/src/steam/engine/job-ticket.cpp +++ b/src/steam/engine/job-ticket.cpp @@ -1,24 +1,15 @@ /* JobTicket - execution plan for render jobs - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file job-ticket.cpp diff --git a/src/steam/engine/job-ticket.hpp b/src/steam/engine/job-ticket.hpp index 01191eda6..661a6f89a 100644 --- a/src/steam/engine/job-ticket.hpp +++ b/src/steam/engine/job-ticket.hpp @@ -1,22 +1,13 @@ /* JOB-TICKET.hpp - execution plan for render jobs - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/node-builder.hpp b/src/steam/engine/node-builder.hpp index 459bf0700..ecbb051e6 100644 --- a/src/steam/engine/node-builder.hpp +++ b/src/steam/engine/node-builder.hpp @@ -1,23 +1,14 @@ /* NODE-BUILDER.hpp - Setup of render nodes connectivity - Copyright (C) Lumiera.org - 2009, Hermann Vosseler - 2024, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/node-factory.cpp b/src/steam/engine/node-factory.cpp index ee45114cc..46db19a94 100644 --- a/src/steam/engine/node-factory.cpp +++ b/src/steam/engine/node-factory.cpp @@ -1,24 +1,15 @@ /* NodeFactory - Service for creating processing nodes of various kinds - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file node-factory.cpp diff --git a/src/steam/engine/node-factory.hpp b/src/steam/engine/node-factory.hpp index c43ad94e3..fee4738f9 100644 --- a/src/steam/engine/node-factory.hpp +++ b/src/steam/engine/node-factory.hpp @@ -1,22 +1,13 @@ /* NODE-FACTORY.hpp - Service for creating processing nodes of various kinds - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/nodeinvocation.hpp b/src/steam/engine/nodeinvocation.hpp index 31c0d2f5e..3c62dc11e 100644 --- a/src/steam/engine/nodeinvocation.hpp +++ b/src/steam/engine/nodeinvocation.hpp @@ -1,22 +1,13 @@ /* NODEINVOCATION.hpp - Organise the invocation state within a single pull() call - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/nodeoperation.hpp b/src/steam/engine/nodeoperation.hpp index 1266b7d19..24f96cdff 100644 --- a/src/steam/engine/nodeoperation.hpp +++ b/src/steam/engine/nodeoperation.hpp @@ -1,22 +1,13 @@ /* NODEOPERATION.hpp - Specify how the nodes call each other and how processing is organized - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/nodewiring-config.hpp b/src/steam/engine/nodewiring-config.hpp index ceeb2102a..4ec809eac 100644 --- a/src/steam/engine/nodewiring-config.hpp +++ b/src/steam/engine/nodewiring-config.hpp @@ -1,22 +1,13 @@ /* NODEWIRING-CONFIG.hpp - Helper for representing and selecting the wiring case - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/nodewiring-obsolete.hpp b/src/steam/engine/nodewiring-obsolete.hpp index aade4705b..65faeaa61 100644 --- a/src/steam/engine/nodewiring-obsolete.hpp +++ b/src/steam/engine/nodewiring-obsolete.hpp @@ -1,22 +1,13 @@ /* NODEWIRING.hpp - Implementation of the node network and operation control - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/nodewiring.cpp b/src/steam/engine/nodewiring.cpp index 0e6201266..c071565a5 100644 --- a/src/steam/engine/nodewiring.cpp +++ b/src/steam/engine/nodewiring.cpp @@ -1,24 +1,15 @@ /* NodeWiring - Implementation of the node network and operation control - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file nodewiring.cpp diff --git a/src/steam/engine/proc-id.hpp b/src/steam/engine/proc-id.hpp index f27b17dab..1980947be 100644 --- a/src/steam/engine/proc-id.hpp +++ b/src/steam/engine/proc-id.hpp @@ -1,22 +1,13 @@ /* PROC-ID.hpp - symbolic and hash identification of processing steps - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/proc-node.cpp b/src/steam/engine/proc-node.cpp index 48a18b2bc..c6d407742 100644 --- a/src/steam/engine/proc-node.cpp +++ b/src/steam/engine/proc-node.cpp @@ -1,24 +1,15 @@ /* ProcNode - Implementation of render node processing - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file proc-node.cpp diff --git a/src/steam/engine/proc-node.hpp b/src/steam/engine/proc-node.hpp index 36db10025..c17202778 100644 --- a/src/steam/engine/proc-node.hpp +++ b/src/steam/engine/proc-node.hpp @@ -1,22 +1,13 @@ /* PROC-NODE.hpp - Key abstraction of the Render Engine: a Processing Node - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/render-drive.cpp b/src/steam/engine/render-drive.cpp index e34793c8a..051e2c664 100644 --- a/src/steam/engine/render-drive.cpp +++ b/src/steam/engine/render-drive.cpp @@ -1,24 +1,15 @@ /* RenderDrive - repetitively advancing a render calculation stream - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file render-drive.cpp diff --git a/src/steam/engine/render-drive.hpp b/src/steam/engine/render-drive.hpp index 436163581..21934a30f 100644 --- a/src/steam/engine/render-drive.hpp +++ b/src/steam/engine/render-drive.hpp @@ -1,22 +1,13 @@ /* RENDER-DRIVE.hpp - repetitively advancing a render calculation stream - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/render-invocation.cpp b/src/steam/engine/render-invocation.cpp index e8abf6731..1f4e76053 100644 --- a/src/steam/engine/render-invocation.cpp +++ b/src/steam/engine/render-invocation.cpp @@ -1,24 +1,15 @@ /* RenderInvocation - Interface for creating processing nodes of various kinds - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file render-invocation.cpp diff --git a/src/steam/engine/render-invocation.hpp b/src/steam/engine/render-invocation.hpp index 9843b809c..91a35598b 100644 --- a/src/steam/engine/render-invocation.hpp +++ b/src/steam/engine/render-invocation.hpp @@ -1,22 +1,13 @@ /* RENDER-INVOCATION.hpp - initiate the rendering of a single frame - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/renderengine.cpp b/src/steam/engine/renderengine.cpp index 30efaa1a3..87780adba 100644 --- a/src/steam/engine/renderengine.cpp +++ b/src/steam/engine/renderengine.cpp @@ -1,24 +1,15 @@ /* RenderEngine - a complete network of processing nodes usable for rendering - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file renderengine.cpp diff --git a/src/steam/engine/renderengine.hpp b/src/steam/engine/renderengine.hpp index 898249e30..4b26dc9f9 100644 --- a/src/steam/engine/renderengine.hpp +++ b/src/steam/engine/renderengine.hpp @@ -1,22 +1,13 @@ /* RENDERENGINE.hpp - a complete network of processing nodes usable for rendering - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/rendergraph.cpp b/src/steam/engine/rendergraph.cpp index 2fc9697db..951af705e 100644 --- a/src/steam/engine/rendergraph.cpp +++ b/src/steam/engine/rendergraph.cpp @@ -1,24 +1,15 @@ /* RenderGraph - render network corresponding to one segment of the timeline - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file rendergraph.cpp diff --git a/src/steam/engine/rendergraph.hpp b/src/steam/engine/rendergraph.hpp index a3fe83bd5..0a44d0da5 100644 --- a/src/steam/engine/rendergraph.hpp +++ b/src/steam/engine/rendergraph.hpp @@ -1,22 +1,13 @@ /* RENDERGRAPH.hpp - render network corresponding to one segment of the timeline - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/state-closure-obsolete.hpp b/src/steam/engine/state-closure-obsolete.hpp index 40e0b8f21..e8bdc70e9 100644 --- a/src/steam/engine/state-closure-obsolete.hpp +++ b/src/steam/engine/state-closure-obsolete.hpp @@ -1,22 +1,13 @@ /* STATE-CLOSURE.hpp - Key Interface representing a render process and encapsulating state - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/state-closure.hpp b/src/steam/engine/state-closure.hpp index f303dd177..607c3fb25 100644 --- a/src/steam/engine/state-closure.hpp +++ b/src/steam/engine/state-closure.hpp @@ -1,22 +1,13 @@ /* STATE-CLOSURE.hpp - Key Interface representing a render process and encapsulating state - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/tracking-heap-block-provider.cpp b/src/steam/engine/tracking-heap-block-provider.cpp index b04232bcd..16404e613 100644 --- a/src/steam/engine/tracking-heap-block-provider.cpp +++ b/src/steam/engine/tracking-heap-block-provider.cpp @@ -1,24 +1,15 @@ /* TrackingHeapBlockProvider - plain heap allocating BufferProvider implementation for tests - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tracking-heap-block-provider.cpp diff --git a/src/steam/engine/tracking-heap-block-provider.hpp b/src/steam/engine/tracking-heap-block-provider.hpp index f46104b13..3d75f7d1b 100644 --- a/src/steam/engine/tracking-heap-block-provider.hpp +++ b/src/steam/engine/tracking-heap-block-provider.hpp @@ -1,22 +1,13 @@ /* TRACKING-HEAP-BLOCK-PROVIDER.hpp - plain heap allocating BufferProvider implementation for tests - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/turnout-system.cpp b/src/steam/engine/turnout-system.cpp index 2e3bcdcb6..4181319aa 100644 --- a/src/steam/engine/turnout-system.cpp +++ b/src/steam/engine/turnout-system.cpp @@ -1,24 +1,15 @@ /* TurnoutSystem - Encapsulation of the state corresponding to a render calculation - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file turnout-system.cpp diff --git a/src/steam/engine/turnout-system.hpp b/src/steam/engine/turnout-system.hpp index 4a86829da..591d0c609 100644 --- a/src/steam/engine/turnout-system.hpp +++ b/src/steam/engine/turnout-system.hpp @@ -1,22 +1,13 @@ /* TURNOUT-SYSTEM.hpp - Encapsulation of the state corresponding to a render calculation - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/turnout.hpp b/src/steam/engine/turnout.hpp index 5d322b796..b77948bbd 100644 --- a/src/steam/engine/turnout.hpp +++ b/src/steam/engine/turnout.hpp @@ -1,23 +1,14 @@ /* TURNOUT.hpp - Organise the invocation state within a single pull() call - Copyright (C) Lumiera.org - 2008, Hermann Vosseler - 2024, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/type-handler.hpp b/src/steam/engine/type-handler.hpp index 7d516a763..bdb7f5fdd 100644 --- a/src/steam/engine/type-handler.hpp +++ b/src/steam/engine/type-handler.hpp @@ -1,22 +1,13 @@ /* TYPE-HANDLER.hpp - a functor pair for setup and destruction - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/weaving-pattern-builder.hpp b/src/steam/engine/weaving-pattern-builder.hpp index 786b66cbe..be242493b 100644 --- a/src/steam/engine/weaving-pattern-builder.hpp +++ b/src/steam/engine/weaving-pattern-builder.hpp @@ -1,22 +1,13 @@ /* WEAVING-PATTERN-BUILDER.hpp - build an invocation pattern for media calculations - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/worker/dummy-image-generator.cpp b/src/steam/engine/worker/dummy-image-generator.cpp index 24ff26299..3b1be4c1c 100644 --- a/src/steam/engine/worker/dummy-image-generator.cpp +++ b/src/steam/engine/worker/dummy-image-generator.cpp @@ -1,25 +1,16 @@ /* DummyImageGenerator - creating test output frames for simulated playback - Copyright (C) Lumiera.org + Copyright (C) 2009, Joel Holdsworth , Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dummy-image-generator.cpp diff --git a/src/steam/engine/worker/dummy-image-generator.hpp b/src/steam/engine/worker/dummy-image-generator.hpp index 07c2ff7f9..15e387761 100644 --- a/src/steam/engine/worker/dummy-image-generator.hpp +++ b/src/steam/engine/worker/dummy-image-generator.hpp @@ -1,23 +1,14 @@ /* DUMMY-IMAGE-GENERATOR.hpp - creating test output frames for simulated playback - Copyright (C) Lumiera.org + Copyright (C) 2009, Joel Holdsworth , Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/worker/dummy-tick.hpp b/src/steam/engine/worker/dummy-tick.hpp index 596bd4852..c7efc654b 100644 --- a/src/steam/engine/worker/dummy-tick.hpp +++ b/src/steam/engine/worker/dummy-tick.hpp @@ -1,23 +1,14 @@ /* DUMMY-TICK.hpp - issuing timed callbacks - Copyright (C) Lumiera.org + Copyright (C) 2009, Joel Holdsworth , Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/engine/worker/tick-service.hpp b/src/steam/engine/worker/tick-service.hpp index 10260204b..0ce182e38 100644 --- a/src/steam/engine/worker/tick-service.hpp +++ b/src/steam/engine/worker/tick-service.hpp @@ -1,23 +1,14 @@ /* TICK-SERVICE.hpp - issuing timed callbacks - Copyright (C) Lumiera.org + Copyright (C) 2009, Joel Holdsworth , Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/external/libgavl.cpp b/src/steam/external/libgavl.cpp index 65d77506d..49df10b96 100644 --- a/src/steam/external/libgavl.cpp +++ b/src/steam/external/libgavl.cpp @@ -1,24 +1,15 @@ /* ImplFacadeGAVL - facade for integrating the GAVL media handling library - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file libgavl.cpp diff --git a/src/steam/external/libgavl.hpp b/src/steam/external/libgavl.hpp index a8f0c9d5b..2e09c056b 100644 --- a/src/steam/external/libgavl.hpp +++ b/src/steam/external/libgavl.hpp @@ -1,22 +1,13 @@ /* LILBGAVL.hpp - facade for integrating the GAVL media handling library - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/facade.cpp b/src/steam/facade.cpp index 60b091a5d..5eb6c9843 100644 --- a/src/steam/facade.cpp +++ b/src/steam/facade.cpp @@ -1,24 +1,15 @@ /* Facade - access point for communicating with the Steam-Interface - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file facade.cpp diff --git a/src/steam/facade.hpp b/src/steam/facade.hpp index ff41fddbb..f7cbccc66 100644 --- a/src/steam/facade.hpp +++ b/src/steam/facade.hpp @@ -1,22 +1,13 @@ /* FACADE.hpp - access point for communicating with the Steam-Interface - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/fixture/fixture-change-detector.hpp b/src/steam/fixture/fixture-change-detector.hpp index 13ac4bf64..404375397 100644 --- a/src/steam/fixture/fixture-change-detector.hpp +++ b/src/steam/fixture/fixture-change-detector.hpp @@ -1,22 +1,13 @@ /* FIXTURE-CHANGE-DETECTOR.hpp - isolating changed segments and tainted processes - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/fixture/fixture.cpp b/src/steam/fixture/fixture.cpp index 32870c363..4814abcac 100644 --- a/src/steam/fixture/fixture.cpp +++ b/src/steam/fixture/fixture.cpp @@ -1,24 +1,15 @@ /* Fixture - the (low level) representation of the Session with explicit placement data - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file fixture.cpp diff --git a/src/steam/fixture/fixture.hpp b/src/steam/fixture/fixture.hpp index 43142f9c4..b3d3b98ac 100644 --- a/src/steam/fixture/fixture.hpp +++ b/src/steam/fixture/fixture.hpp @@ -1,22 +1,13 @@ /* FIXTURE.hpp - the (low level) representation of the Session with explicit placement data - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/fixture/model-port-registry.cpp b/src/steam/fixture/model-port-registry.cpp index 903684b35..82bcb660f 100644 --- a/src/steam/fixture/model-port-registry.cpp +++ b/src/steam/fixture/model-port-registry.cpp @@ -1,24 +1,15 @@ /* ModelPortRegistry - creating and organising and accessing model ports - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file model-port-registry.cpp diff --git a/src/steam/fixture/model-port-registry.hpp b/src/steam/fixture/model-port-registry.hpp index e9a7b9074..02d1bf06e 100644 --- a/src/steam/fixture/model-port-registry.hpp +++ b/src/steam/fixture/model-port-registry.hpp @@ -1,22 +1,13 @@ /* MODEL-PORT-REGISTRY.hpp - creating and organising and accessing model ports - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/fixture/node-graph-attachment.hpp b/src/steam/fixture/node-graph-attachment.hpp index 1f89586e4..78de5ce01 100644 --- a/src/steam/fixture/node-graph-attachment.hpp +++ b/src/steam/fixture/node-graph-attachment.hpp @@ -1,22 +1,13 @@ /* NODE-GRAPH-ATTACHMENT.hpp - Binding from a Fixture-Segment into the low-level-Model - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/fixture/segment.cpp b/src/steam/fixture/segment.cpp index b852145dc..6be03e099 100644 --- a/src/steam/fixture/segment.cpp +++ b/src/steam/fixture/segment.cpp @@ -1,24 +1,15 @@ /* Segment - Segment of the timeline for rendering. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file segment.cpp diff --git a/src/steam/fixture/segment.hpp b/src/steam/fixture/segment.hpp index 469bb54ae..a82fa30be 100644 --- a/src/steam/fixture/segment.hpp +++ b/src/steam/fixture/segment.hpp @@ -1,22 +1,13 @@ /* SEGMENT.hpp - Segment of the timeline for rendering. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/fixture/segmentation.cpp b/src/steam/fixture/segmentation.cpp index fed194384..eacc7889f 100644 --- a/src/steam/fixture/segmentation.cpp +++ b/src/steam/fixture/segmentation.cpp @@ -1,24 +1,15 @@ /* Segmentation - Partitioning of a timeline for organising the render graph. - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file segmentation.cpp diff --git a/src/steam/fixture/segmentation.hpp b/src/steam/fixture/segmentation.hpp index 4f38551de..07dbefbfa 100644 --- a/src/steam/fixture/segmentation.hpp +++ b/src/steam/fixture/segmentation.hpp @@ -1,22 +1,13 @@ /* SEGMENTATION.hpp - Partitioning of a timeline for organising the render graph. - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/applicable-builder-target-types.hpp b/src/steam/mobject/builder/applicable-builder-target-types.hpp index 245b28745..9b907a2b6 100644 --- a/src/steam/mobject/builder/applicable-builder-target-types.hpp +++ b/src/steam/mobject/builder/applicable-builder-target-types.hpp @@ -1,22 +1,13 @@ /* ApplicableBuilderTargetTypes - definition header specifying all types treated by builder tools - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/assembler.cpp b/src/steam/mobject/builder/assembler.cpp index 1208bb1c9..ad5969d6e 100644 --- a/src/steam/mobject/builder/assembler.cpp +++ b/src/steam/mobject/builder/assembler.cpp @@ -1,24 +1,15 @@ /* Assembler - building facility (implementation of the build process) - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file assembler.cpp diff --git a/src/steam/mobject/builder/assembler.hpp b/src/steam/mobject/builder/assembler.hpp index 1365a3c2b..0e0257327 100644 --- a/src/steam/mobject/builder/assembler.hpp +++ b/src/steam/mobject/builder/assembler.hpp @@ -1,22 +1,13 @@ /* ASSEMBLER.hpp - building facility (implementation of the build process) - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/buildertool.hpp b/src/steam/mobject/builder/buildertool.hpp index 0d6317968..148399e9f 100644 --- a/src/steam/mobject/builder/buildertool.hpp +++ b/src/steam/mobject/builder/buildertool.hpp @@ -1,22 +1,13 @@ /* BUILDERTOOL.hpp - Interface, (visiting) tool for processing MObjects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/common.hpp b/src/steam/mobject/builder/common.hpp index f3c5a34a2..ec51cd720 100644 --- a/src/steam/mobject/builder/common.hpp +++ b/src/steam/mobject/builder/common.hpp @@ -1,22 +1,13 @@ /* COMMON.hpp - common definitions for the Builder subsystem - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/conmanager.cpp b/src/steam/mobject/builder/conmanager.cpp index 7a01d4bbd..b5cc58685 100644 --- a/src/steam/mobject/builder/conmanager.cpp +++ b/src/steam/mobject/builder/conmanager.cpp @@ -1,24 +1,15 @@ /* ConManager - manages the creation of data/control connections when building the Renderengine - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file conmanager.cpp diff --git a/src/steam/mobject/builder/conmanager.hpp b/src/steam/mobject/builder/conmanager.hpp index ee4c4a23b..f446d1355 100644 --- a/src/steam/mobject/builder/conmanager.hpp +++ b/src/steam/mobject/builder/conmanager.hpp @@ -1,22 +1,13 @@ /* CONMANAGER.hpp - manages the creation of data/control connections when building the Renderengine - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/mould.hpp b/src/steam/mobject/builder/mould.hpp index 5d7f8d891..03ff5ec94 100644 --- a/src/steam/mobject/builder/mould.hpp +++ b/src/steam/mobject/builder/mould.hpp @@ -1,22 +1,13 @@ /* MOULD.hpp - builder tool kit for the basic building situations - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/nodecreatortool.cpp b/src/steam/mobject/builder/nodecreatortool.cpp index 06390842f..12d3fe134 100644 --- a/src/steam/mobject/builder/nodecreatortool.cpp +++ b/src/steam/mobject/builder/nodecreatortool.cpp @@ -1,24 +1,15 @@ /* NodeCreaterTool - central Tool implementing the Renderengine building - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file nodecreatortool.cpp diff --git a/src/steam/mobject/builder/nodecreatortool.hpp b/src/steam/mobject/builder/nodecreatortool.hpp index 4d867c06d..d67fcc192 100644 --- a/src/steam/mobject/builder/nodecreatortool.hpp +++ b/src/steam/mobject/builder/nodecreatortool.hpp @@ -1,22 +1,13 @@ /* NODECREATERTOOL.hpp - central Tool implementing the Renderengine building - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/operationpoint.cpp b/src/steam/mobject/builder/operationpoint.cpp index 2a3ab55f3..b18ba2ea1 100644 --- a/src/steam/mobject/builder/operationpoint.cpp +++ b/src/steam/mobject/builder/operationpoint.cpp @@ -1,24 +1,15 @@ /* OperationPoint - abstraction representing the point where to apply a build instruction - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file operationpoint.cpp diff --git a/src/steam/mobject/builder/operationpoint.hpp b/src/steam/mobject/builder/operationpoint.hpp index 6a8738b72..af2f2e84b 100644 --- a/src/steam/mobject/builder/operationpoint.hpp +++ b/src/steam/mobject/builder/operationpoint.hpp @@ -1,22 +1,13 @@ /* OPERATIONPOINT.hpp - abstraction representing the point where to apply a build instruction - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/segmentation-tool.cpp b/src/steam/mobject/builder/segmentation-tool.cpp index 10a030c36..2fc5604ac 100644 --- a/src/steam/mobject/builder/segmentation-tool.cpp +++ b/src/steam/mobject/builder/segmentation-tool.cpp @@ -1,24 +1,15 @@ /* SegmentationTool - Tool for creating a partitioning of the current timeline - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file segmentation-tool.cpp diff --git a/src/steam/mobject/builder/segmentation-tool.hpp b/src/steam/mobject/builder/segmentation-tool.hpp index 28d176e41..26bfe45a6 100644 --- a/src/steam/mobject/builder/segmentation-tool.hpp +++ b/src/steam/mobject/builder/segmentation-tool.hpp @@ -1,22 +1,13 @@ /* SEGMENTATION-TOOL.hpp - Tool for creating a partitioning of the current timeline - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/toolfactory.cpp b/src/steam/mobject/builder/toolfactory.cpp index b1b532dca..a29d7541c 100644 --- a/src/steam/mobject/builder/toolfactory.cpp +++ b/src/steam/mobject/builder/toolfactory.cpp @@ -1,24 +1,15 @@ /* ToolFactory - supply of Tool implementations for the Builder - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file toolfactory.cpp diff --git a/src/steam/mobject/builder/toolfactory.hpp b/src/steam/mobject/builder/toolfactory.hpp index ddab9e901..e26903275 100644 --- a/src/steam/mobject/builder/toolfactory.hpp +++ b/src/steam/mobject/builder/toolfactory.hpp @@ -1,22 +1,13 @@ /* TOOLFACTORY.hpp - supply of Tool implementations for the Builder - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builder/wiringrequest.hpp b/src/steam/mobject/builder/wiringrequest.hpp index f0f32c51a..97ab48132 100644 --- a/src/steam/mobject/builder/wiringrequest.hpp +++ b/src/steam/mobject/builder/wiringrequest.hpp @@ -1,22 +1,13 @@ /* WIRINGREQUEST.hpp - (interface) the intention to make a data or control connection - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/builderfacade.cpp b/src/steam/mobject/builderfacade.cpp index 593e4b7df..ae0b9e6c1 100644 --- a/src/steam/mobject/builderfacade.cpp +++ b/src/steam/mobject/builderfacade.cpp @@ -1,24 +1,15 @@ /* BuilderFacade - Facade and service access point for the Builder Subsystem - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file builderfacade.cpp diff --git a/src/steam/mobject/builderfacade.hpp b/src/steam/mobject/builderfacade.hpp index 5e5fae7dc..c99ff55c7 100644 --- a/src/steam/mobject/builderfacade.hpp +++ b/src/steam/mobject/builderfacade.hpp @@ -1,22 +1,13 @@ /* BUILDERFACADE.hpp - Facade and service access point for the Builder Subsystem - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/explicitplacement.hpp b/src/steam/mobject/explicitplacement.hpp index 608bc3bfb..4de25d6e3 100644 --- a/src/steam/mobject/explicitplacement.hpp +++ b/src/steam/mobject/explicitplacement.hpp @@ -1,22 +1,13 @@ /* EXPLICITPLACEMENT.hpp - special Placement yielding an absolute location (Time,Output) for a MObject - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/interpolator.hpp b/src/steam/mobject/interpolator.hpp index 465ca77b6..a526550cc 100644 --- a/src/steam/mobject/interpolator.hpp +++ b/src/steam/mobject/interpolator.hpp @@ -1,22 +1,13 @@ /* INTERPOLATOR.hpp - denotes a facility to get (continuously interpolated) parameter values - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/mobject-ref.cpp b/src/steam/mobject/mobject-ref.cpp index 975b68f2d..78858f7db 100644 --- a/src/steam/mobject/mobject-ref.cpp +++ b/src/steam/mobject/mobject-ref.cpp @@ -1,24 +1,15 @@ /* MobjectRef - active external reference to an MObject within the Session - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mobject-ref.cpp diff --git a/src/steam/mobject/mobject-ref.hpp b/src/steam/mobject/mobject-ref.hpp index 78e9f4de5..3601fb036 100644 --- a/src/steam/mobject/mobject-ref.hpp +++ b/src/steam/mobject/mobject-ref.hpp @@ -1,22 +1,13 @@ /* MOBJECT-REF.hpp - active external reference to an MObject within the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/mobject.cpp b/src/steam/mobject/mobject.cpp index 68fcee203..cda3a9fae 100644 --- a/src/steam/mobject/mobject.cpp +++ b/src/steam/mobject/mobject.cpp @@ -1,24 +1,15 @@ /* MObject - Key Abstraction: A Media Object in the Session - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mobject.cpp diff --git a/src/steam/mobject/mobject.hpp b/src/steam/mobject/mobject.hpp index 059598058..90910da9a 100644 --- a/src/steam/mobject/mobject.hpp +++ b/src/steam/mobject/mobject.hpp @@ -1,22 +1,13 @@ /* MOBJECT.hpp - Key Abstraction: A Media Object in the Session - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/model-port.hpp b/src/steam/mobject/model-port.hpp index 759a6155f..71024939a 100644 --- a/src/steam/mobject/model-port.hpp +++ b/src/steam/mobject/model-port.hpp @@ -1,22 +1,13 @@ /* MODEL-PORT.hpp - point to pull output data from the model - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/output-designation.cpp b/src/steam/mobject/output-designation.cpp index 97409585b..1d4c97272 100644 --- a/src/steam/mobject/output-designation.cpp +++ b/src/steam/mobject/output-designation.cpp @@ -1,24 +1,15 @@ /* OutputDesignation - specifying a desired output destination - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file output-designation.cpp diff --git a/src/steam/mobject/output-designation.hpp b/src/steam/mobject/output-designation.hpp index 9d2a76250..8a7e981e7 100644 --- a/src/steam/mobject/output-designation.hpp +++ b/src/steam/mobject/output-designation.hpp @@ -1,22 +1,13 @@ /* OUTPUT-DESIGNATION.hpp - specifying a desired output destination - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/output-mapping.hpp b/src/steam/mobject/output-mapping.hpp index 81b6a2e96..f7fdf03fc 100644 --- a/src/steam/mobject/output-mapping.hpp +++ b/src/steam/mobject/output-mapping.hpp @@ -1,22 +1,13 @@ /* OUTPUT-MAPPING.hpp - generic interface for translation of output designations - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/parameter.cpp b/src/steam/mobject/parameter.cpp index f7316aaac..e8bcc8cc0 100644 --- a/src/steam/mobject/parameter.cpp +++ b/src/steam/mobject/parameter.cpp @@ -1,24 +1,15 @@ /* Parameter - representation of an automatable effect/plugin parameter - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file parameter.cpp diff --git a/src/steam/mobject/parameter.hpp b/src/steam/mobject/parameter.hpp index 15bc1cdd0..28b70129d 100644 --- a/src/steam/mobject/parameter.hpp +++ b/src/steam/mobject/parameter.hpp @@ -1,22 +1,13 @@ /* PARAMETER.hpp - representation of an automatable effect/plugin parameter - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/paramprovider.cpp b/src/steam/mobject/paramprovider.cpp index 2d83c1f3d..660d801b7 100644 --- a/src/steam/mobject/paramprovider.cpp +++ b/src/steam/mobject/paramprovider.cpp @@ -1,24 +1,15 @@ /* ParamProvider - interface denoting a source for actual Parameter values - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file paramprovider.cpp diff --git a/src/steam/mobject/paramprovider.hpp b/src/steam/mobject/paramprovider.hpp index 1f9ca2e88..50cfcf64d 100644 --- a/src/steam/mobject/paramprovider.hpp +++ b/src/steam/mobject/paramprovider.hpp @@ -1,22 +1,13 @@ /* PARAMPROVIDER.hpp - interface denoting a source for actual Parameter values - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/placement-ref.hpp b/src/steam/mobject/placement-ref.hpp index 1eeae135d..39804197a 100644 --- a/src/steam/mobject/placement-ref.hpp +++ b/src/steam/mobject/placement-ref.hpp @@ -1,22 +1,13 @@ /* PLACEMENT-REF.hpp - generic reference to an individual placement added to the session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/placement.cpp b/src/steam/mobject/placement.cpp index 4c2fb3c5d..a71f9a783 100644 --- a/src/steam/mobject/placement.cpp +++ b/src/steam/mobject/placement.cpp @@ -1,24 +1,15 @@ /* Placement - Key Abstraction: a way to place and locate a Media Object - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement.cpp diff --git a/src/steam/mobject/placement.hpp b/src/steam/mobject/placement.hpp index fade8ed18..fdad618c2 100644 --- a/src/steam/mobject/placement.hpp +++ b/src/steam/mobject/placement.hpp @@ -1,22 +1,13 @@ /* PLACEMENT.hpp - Key Abstraction: a way to place and locate a Media Object - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session.hpp b/src/steam/mobject/session.hpp index 0f2bb6564..62e007a99 100644 --- a/src/steam/mobject/session.hpp +++ b/src/steam/mobject/session.hpp @@ -1,22 +1,13 @@ /* SESSION.hpp - holds the complete session to be edited by the user - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/abstractmo.cpp b/src/steam/mobject/session/abstractmo.cpp index 917d8ab2b..edcfd5feb 100644 --- a/src/steam/mobject/session/abstractmo.cpp +++ b/src/steam/mobject/session/abstractmo.cpp @@ -1,24 +1,15 @@ /* AbstractMO - abstract base class for all Media Objects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file abstractmo.cpp diff --git a/src/steam/mobject/session/abstractmo.hpp b/src/steam/mobject/session/abstractmo.hpp index 738a4d09e..26ab0aecf 100644 --- a/src/steam/mobject/session/abstractmo.hpp +++ b/src/steam/mobject/session/abstractmo.hpp @@ -1,22 +1,13 @@ /* ABSTRACTMO.hpp - abstract base class for all Media Objects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/allocation.cpp b/src/steam/mobject/session/allocation.cpp index e64fd3803..806b5779a 100644 --- a/src/steam/mobject/session/allocation.cpp +++ b/src/steam/mobject/session/allocation.cpp @@ -1,24 +1,15 @@ /* Allocation - objective to place a MObject in a specific way - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file allocation.cpp diff --git a/src/steam/mobject/session/allocation.hpp b/src/steam/mobject/session/allocation.hpp index 57d06f3b0..d067c0bd7 100644 --- a/src/steam/mobject/session/allocation.hpp +++ b/src/steam/mobject/session/allocation.hpp @@ -1,22 +1,13 @@ /* ALLOCATION.hpp - objective to place a MObject in a specific way - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/auto.cpp b/src/steam/mobject/session/auto.cpp index ce1754ed0..b26d524de 100644 --- a/src/steam/mobject/session/auto.cpp +++ b/src/steam/mobject/session/auto.cpp @@ -1,24 +1,15 @@ /* Auto - Media Object holding automation data - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file auto.cpp diff --git a/src/steam/mobject/session/auto.hpp b/src/steam/mobject/session/auto.hpp index 9b239c839..5b9bd02f7 100644 --- a/src/steam/mobject/session/auto.hpp +++ b/src/steam/mobject/session/auto.hpp @@ -1,22 +1,13 @@ /* AUTO.hpp - Media Object holding automation data - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/binding.cpp b/src/steam/mobject/session/binding.cpp index 987ea490e..5fc45243f 100644 --- a/src/steam/mobject/session/binding.cpp +++ b/src/steam/mobject/session/binding.cpp @@ -1,24 +1,15 @@ /* Binding - link to use a sequence within the session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session/binding.cpp diff --git a/src/steam/mobject/session/binding.hpp b/src/steam/mobject/session/binding.hpp index 3d5d83f4a..978368be2 100644 --- a/src/steam/mobject/session/binding.hpp +++ b/src/steam/mobject/session/binding.hpp @@ -1,22 +1,13 @@ /* BINDING.hpp - link to use a sequence within the session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/bus-mo.cpp b/src/steam/mobject/session/bus-mo.cpp index 4b444f470..c2a3de96a 100644 --- a/src/steam/mobject/session/bus-mo.cpp +++ b/src/steam/mobject/session/bus-mo.cpp @@ -1,24 +1,15 @@ /* BusMO - attachment point to form a global pipe - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file bus-mo.cpp diff --git a/src/steam/mobject/session/bus-mo.hpp b/src/steam/mobject/session/bus-mo.hpp index 24846f41e..0b498773c 100644 --- a/src/steam/mobject/session/bus-mo.hpp +++ b/src/steam/mobject/session/bus-mo.hpp @@ -1,22 +1,13 @@ /* BUS-MO.hpp - attachment point to form a global pipe - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/clip.cpp b/src/steam/mobject/session/clip.cpp index 6589aa3a7..6066a4dc9 100644 --- a/src/steam/mobject/session/clip.cpp +++ b/src/steam/mobject/session/clip.cpp @@ -1,24 +1,15 @@ /* Clip - a Media Clip - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session/clip.cpp diff --git a/src/steam/mobject/session/clip.hpp b/src/steam/mobject/session/clip.hpp index 43de72362..d680d30c9 100644 --- a/src/steam/mobject/session/clip.hpp +++ b/src/steam/mobject/session/clip.hpp @@ -1,22 +1,13 @@ /* CLIP.hpp - a Media Clip - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/constraint.cpp b/src/steam/mobject/session/constraint.cpp index b55ac9af8..321061fb1 100644 --- a/src/steam/mobject/session/constraint.cpp +++ b/src/steam/mobject/session/constraint.cpp @@ -1,24 +1,15 @@ /* Constraint - LocatingPin representing an mandatory directive - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file constraint.cpp diff --git a/src/steam/mobject/session/constraint.hpp b/src/steam/mobject/session/constraint.hpp index 6183ac2e0..3a2827386 100644 --- a/src/steam/mobject/session/constraint.hpp +++ b/src/steam/mobject/session/constraint.hpp @@ -1,22 +1,13 @@ /* CONSTRAINT.hpp - LocatingPin representing an mandatory directive - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/dummy-session-connection.cpp b/src/steam/mobject/session/dummy-session-connection.cpp index 4a7e128b3..6c00167f8 100644 --- a/src/steam/mobject/session/dummy-session-connection.cpp +++ b/src/steam/mobject/session/dummy-session-connection.cpp @@ -1,24 +1,15 @@ /* DummySessionConnection - scaffolding placeholder to drive the GUI-Session connection - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dummy-session-connection.cpp diff --git a/src/steam/mobject/session/dummy-session-connection.hpp b/src/steam/mobject/session/dummy-session-connection.hpp index 9a2dbaeb7..ae6f1bb35 100644 --- a/src/steam/mobject/session/dummy-session-connection.hpp +++ b/src/steam/mobject/session/dummy-session-connection.hpp @@ -1,22 +1,13 @@ /* dummy-session-connection.hpp - scaffolding placeholder to drive the GUI-Session connection - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/effect.cpp b/src/steam/mobject/session/effect.cpp index c32673ad0..e1cf82ebe 100644 --- a/src/steam/mobject/session/effect.cpp +++ b/src/steam/mobject/session/effect.cpp @@ -1,24 +1,15 @@ /* Effect - Model representation of a pluggable and automatable effect. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session/effect.cpp diff --git a/src/steam/mobject/session/effect.hpp b/src/steam/mobject/session/effect.hpp index 29f44cf45..08c6268fe 100644 --- a/src/steam/mobject/session/effect.hpp +++ b/src/steam/mobject/session/effect.hpp @@ -1,22 +1,13 @@ /* EFFECT.hpp - Model representation of a pluggable and automatable effect. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/element-query.hpp b/src/steam/mobject/session/element-query.hpp index a3c8cceb4..307866739 100644 --- a/src/steam/mobject/session/element-query.hpp +++ b/src/steam/mobject/session/element-query.hpp @@ -1,22 +1,13 @@ /* ELEMENT-QUERY.hpp - session sub-interface to query and retrieve elements - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/fixedlocation.cpp b/src/steam/mobject/session/fixedlocation.cpp index 43e29f432..9f67114cb 100644 --- a/src/steam/mobject/session/fixedlocation.cpp +++ b/src/steam/mobject/session/fixedlocation.cpp @@ -1,24 +1,15 @@ /* FixedLocation - directly positioning a MObject to a fixed location - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file fixedlocation.cpp diff --git a/src/steam/mobject/session/fixedlocation.hpp b/src/steam/mobject/session/fixedlocation.hpp index 7a6aa8afc..c3ba6d558 100644 --- a/src/steam/mobject/session/fixedlocation.hpp +++ b/src/steam/mobject/session/fixedlocation.hpp @@ -1,22 +1,13 @@ /* FIXEDLOCATION.hpp - directly positioning a MObject to a fixed location - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/fork.cpp b/src/steam/mobject/session/fork.cpp index 22b2c5c22..57d4c90ba 100644 --- a/src/steam/mobject/session/fork.cpp +++ b/src/steam/mobject/session/fork.cpp @@ -1,24 +1,15 @@ /* Fork - A grouping device within the Session. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file fork.cpp diff --git a/src/steam/mobject/session/fork.hpp b/src/steam/mobject/session/fork.hpp index 5cd3297b3..d33a69818 100644 --- a/src/steam/mobject/session/fork.hpp +++ b/src/steam/mobject/session/fork.hpp @@ -1,22 +1,13 @@ /* FORK.hpp - A grouping device within the Session. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/generator-mo.cpp b/src/steam/mobject/session/generator-mo.cpp index 9f5cb567d..fbbc984a9 100644 --- a/src/steam/mobject/session/generator-mo.cpp +++ b/src/steam/mobject/session/generator-mo.cpp @@ -1,24 +1,15 @@ /* GeneratorMO - a (Test)data generator - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file generator-mo.cpp diff --git a/src/steam/mobject/session/generator-mo.hpp b/src/steam/mobject/session/generator-mo.hpp index 4da6b810b..0cfaf8c4e 100644 --- a/src/steam/mobject/session/generator-mo.hpp +++ b/src/steam/mobject/session/generator-mo.hpp @@ -1,22 +1,13 @@ /* GENERATOR-MO.hpp - a (Test)data generator - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/label.cpp b/src/steam/mobject/session/label.cpp index 39f40903a..ec01679e3 100644 --- a/src/steam/mobject/session/label.cpp +++ b/src/steam/mobject/session/label.cpp @@ -1,24 +1,15 @@ /* Label - a user visible Marker or Tag - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file label.cpp diff --git a/src/steam/mobject/session/label.hpp b/src/steam/mobject/session/label.hpp index 6f57a787d..d934bdc09 100644 --- a/src/steam/mobject/session/label.hpp +++ b/src/steam/mobject/session/label.hpp @@ -1,22 +1,13 @@ /* LABEL.hpp - a user visible Marker or Tag - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/lifecycle-advisor.hpp b/src/steam/mobject/session/lifecycle-advisor.hpp index 997f40ae2..5ee5fe19d 100644 --- a/src/steam/mobject/session/lifecycle-advisor.hpp +++ b/src/steam/mobject/session/lifecycle-advisor.hpp @@ -1,22 +1,13 @@ /* LIFECYCLE-ADVISOR.hpp - outline of the session lifecycle - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/locatingpin.cpp b/src/steam/mobject/session/locatingpin.cpp index 8a303c728..dc6cf7468 100644 --- a/src/steam/mobject/session/locatingpin.cpp +++ b/src/steam/mobject/session/locatingpin.cpp @@ -1,24 +1,15 @@ /* LocatingPin - Chaining and constraining the Placement of a Media Object - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file locatingpin.cpp diff --git a/src/steam/mobject/session/locatingpin.hpp b/src/steam/mobject/session/locatingpin.hpp index 33a4f06b1..2df1ad090 100644 --- a/src/steam/mobject/session/locatingpin.hpp +++ b/src/steam/mobject/session/locatingpin.hpp @@ -1,22 +1,13 @@ /* LOCATINGPIN.hpp - Chaining and constraining the Placement of a Media Object - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/meta.cpp b/src/steam/mobject/session/meta.cpp index 8341fa861..6211d8829 100644 --- a/src/steam/mobject/session/meta.cpp +++ b/src/steam/mobject/session/meta.cpp @@ -1,24 +1,15 @@ /* Meta - abstract base class of all MObjects representing meta data or processing instructions - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session/meta.cpp diff --git a/src/steam/mobject/session/meta.hpp b/src/steam/mobject/session/meta.hpp index 85e077d92..2be9afeec 100644 --- a/src/steam/mobject/session/meta.hpp +++ b/src/steam/mobject/session/meta.hpp @@ -1,22 +1,13 @@ /* META.hpp - abstract base class of all MObjects representing meta data or processing instructions - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/mobjectfactory.cpp b/src/steam/mobject/session/mobjectfactory.cpp index ff9a8528f..cbfdd2df3 100644 --- a/src/steam/mobject/session/mobjectfactory.cpp +++ b/src/steam/mobject/session/mobjectfactory.cpp @@ -1,24 +1,15 @@ /* MObjectFactory - creating concrete MObject subclass instances - Copyright (C) Lumiera.org + Copyright (C) 2008,2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mobjectfactory.cpp diff --git a/src/steam/mobject/session/mobjectfactory.hpp b/src/steam/mobject/session/mobjectfactory.hpp index cadc2e00c..8a8854197 100644 --- a/src/steam/mobject/session/mobjectfactory.hpp +++ b/src/steam/mobject/session/mobjectfactory.hpp @@ -1,22 +1,13 @@ /* MOBJECTFACTORY.hpp - creating concrete MObject subclass instances - Copyright (C) Lumiera.org + Copyright (C) 2008, 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/placement-index-query-resolver.cpp b/src/steam/mobject/session/placement-index-query-resolver.cpp index 776d29610..874b19f48 100644 --- a/src/steam/mobject/session/placement-index-query-resolver.cpp +++ b/src/steam/mobject/session/placement-index-query-resolver.cpp @@ -1,24 +1,15 @@ /* placementIndexQueryResolver - using PlacementIndex to resolve scope queries - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-index-query-resolver.cpp diff --git a/src/steam/mobject/session/placement-index-query-resolver.hpp b/src/steam/mobject/session/placement-index-query-resolver.hpp index e1c860735..d3ea37147 100644 --- a/src/steam/mobject/session/placement-index-query-resolver.hpp +++ b/src/steam/mobject/session/placement-index-query-resolver.hpp @@ -1,22 +1,13 @@ /* PLACEMENT-INDEX-QUERY-RESOLVER.hpp - using PlacementIndex to resolve scope queries - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/placement-index.cpp b/src/steam/mobject/session/placement-index.cpp index 912214b83..4cff6e30f 100644 --- a/src/steam/mobject/session/placement-index.cpp +++ b/src/steam/mobject/session/placement-index.cpp @@ -1,24 +1,15 @@ /* PlacementIndex - tracking individual Placements and their relations - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-index.cpp diff --git a/src/steam/mobject/session/placement-index.hpp b/src/steam/mobject/session/placement-index.hpp index 2e9a8d67c..f6abdd176 100644 --- a/src/steam/mobject/session/placement-index.hpp +++ b/src/steam/mobject/session/placement-index.hpp @@ -1,22 +1,13 @@ /* PLACEMENT-INDEX.hpp - tracking individual Placements and their relations - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/plug.cpp b/src/steam/mobject/session/plug.cpp index bc91ee82e..3aa71b5c7 100644 --- a/src/steam/mobject/session/plug.cpp +++ b/src/steam/mobject/session/plug.cpp @@ -1,24 +1,15 @@ /* Plug - LocatingPin for requesting connection to some Pipe - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file plug.cpp diff --git a/src/steam/mobject/session/plug.hpp b/src/steam/mobject/session/plug.hpp index 4822cafc9..a6c36c9ac 100644 --- a/src/steam/mobject/session/plug.hpp +++ b/src/steam/mobject/session/plug.hpp @@ -1,22 +1,13 @@ /* PLUG.hpp - LocatingPin for requesting connection to some Pipe - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/query-focus-stack.hpp b/src/steam/mobject/session/query-focus-stack.hpp index 4414ac1a2..a47dcfd6e 100644 --- a/src/steam/mobject/session/query-focus-stack.hpp +++ b/src/steam/mobject/session/query-focus-stack.hpp @@ -1,22 +1,13 @@ /* QUERY-FOCUS-STACK.hpp - management of current scope within the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/query-focus.cpp b/src/steam/mobject/session/query-focus.cpp index 49ed28497..cbc5569cd 100644 --- a/src/steam/mobject/session/query-focus.cpp +++ b/src/steam/mobject/session/query-focus.cpp @@ -1,24 +1,15 @@ /* QueryFocus - management of current scope within the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-focus.cpp diff --git a/src/steam/mobject/session/query-focus.hpp b/src/steam/mobject/session/query-focus.hpp index 33179335f..ecb308da8 100644 --- a/src/steam/mobject/session/query-focus.hpp +++ b/src/steam/mobject/session/query-focus.hpp @@ -1,22 +1,13 @@ /* QUERY-FOCUS.hpp - management of current scope within the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/query/fake-configrules.cpp b/src/steam/mobject/session/query/fake-configrules.cpp index 9527931b2..9f3c2152b 100644 --- a/src/steam/mobject/session/query/fake-configrules.cpp +++ b/src/steam/mobject/session/query/fake-configrules.cpp @@ -1,24 +1,15 @@ /* FakeConfigRules - dummy implementation of the config rules system - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file fake-configrules.cpp diff --git a/src/steam/mobject/session/query/fake-configrules.hpp b/src/steam/mobject/session/query/fake-configrules.hpp index 3df2363ef..ada86ed59 100644 --- a/src/steam/mobject/session/query/fake-configrules.hpp +++ b/src/steam/mobject/session/query/fake-configrules.hpp @@ -1,22 +1,13 @@ /* FAKE-CONFIGRULES.hpp - dummy implementation of the config rules system - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/relativelocation.cpp b/src/steam/mobject/session/relativelocation.cpp index 03aec7757..1fdb26037 100644 --- a/src/steam/mobject/session/relativelocation.cpp +++ b/src/steam/mobject/session/relativelocation.cpp @@ -1,24 +1,15 @@ /* RelativeLocation - Placement implementation attaching MObjects relative to another one - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file relativelocation.cpp diff --git a/src/steam/mobject/session/relativelocation.hpp b/src/steam/mobject/session/relativelocation.hpp index 8ce6f0487..eb17f46c3 100644 --- a/src/steam/mobject/session/relativelocation.hpp +++ b/src/steam/mobject/session/relativelocation.hpp @@ -1,22 +1,13 @@ /* RELATIVELOCATION.hpp - Placement implementation attaching MObjects relative to another one - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/root.cpp b/src/steam/mobject/session/root.cpp index 29c9df4ef..ee89fb7bb 100644 --- a/src/steam/mobject/session/root.cpp +++ b/src/steam/mobject/session/root.cpp @@ -1,24 +1,15 @@ /* Root - root element of the high-level model, global session scope - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file root.cpp diff --git a/src/steam/mobject/session/root.hpp b/src/steam/mobject/session/root.hpp index e27b819a1..54075b50e 100644 --- a/src/steam/mobject/session/root.hpp +++ b/src/steam/mobject/session/root.hpp @@ -1,22 +1,13 @@ /* ROOT.hpp - root element of the high-level model, global session scope - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/scope-locator.hpp b/src/steam/mobject/session/scope-locator.hpp index 97d6f452a..032d65067 100644 --- a/src/steam/mobject/session/scope-locator.hpp +++ b/src/steam/mobject/session/scope-locator.hpp @@ -1,22 +1,13 @@ /* SCOPE-LOCATOR.hpp - management and registration point for the QueryFocus-system - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/scope-path.cpp b/src/steam/mobject/session/scope-path.cpp index 8defb40fd..7879a67a5 100644 --- a/src/steam/mobject/session/scope-path.cpp +++ b/src/steam/mobject/session/scope-path.cpp @@ -1,24 +1,15 @@ /* ScopePath - logical access path down from Session root - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scope-path.cpp diff --git a/src/steam/mobject/session/scope-path.hpp b/src/steam/mobject/session/scope-path.hpp index 3f4123fe4..dec3272df 100644 --- a/src/steam/mobject/session/scope-path.hpp +++ b/src/steam/mobject/session/scope-path.hpp @@ -1,22 +1,13 @@ /* SCOPE-PATH.hpp - logical access path down from Session root - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/scope-query.hpp b/src/steam/mobject/session/scope-query.hpp index 71e3b46a2..947da8330 100644 --- a/src/steam/mobject/session/scope-query.hpp +++ b/src/steam/mobject/session/scope-query.hpp @@ -1,22 +1,13 @@ /* SCOPE-QUERY.hpp - query to discover the contents of a container-like part of the model - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/scope.cpp b/src/steam/mobject/session/scope.cpp index 7cee2b4ed..53585883b 100644 --- a/src/steam/mobject/session/scope.cpp +++ b/src/steam/mobject/session/scope.cpp @@ -1,24 +1,15 @@ /* Scope - nested search scope for properties of placement - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scope.cpp diff --git a/src/steam/mobject/session/scope.hpp b/src/steam/mobject/session/scope.hpp index dea2c7192..d6cc19f12 100644 --- a/src/steam/mobject/session/scope.hpp +++ b/src/steam/mobject/session/scope.hpp @@ -1,22 +1,13 @@ /* SCOPE.hpp - nested search scope for properties of placement - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/sess-manager-impl.cpp b/src/steam/mobject/session/sess-manager-impl.cpp index 241eb163e..6e80e4508 100644 --- a/src/steam/mobject/session/sess-manager-impl.cpp +++ b/src/steam/mobject/session/sess-manager-impl.cpp @@ -1,24 +1,15 @@ /* SessManagerImpl - global session access and lifecycle - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sess-manager-impl.cpp diff --git a/src/steam/mobject/session/sess-manager-impl.hpp b/src/steam/mobject/session/sess-manager-impl.hpp index 0bb955b6f..657e1f575 100644 --- a/src/steam/mobject/session/sess-manager-impl.hpp +++ b/src/steam/mobject/session/sess-manager-impl.hpp @@ -1,22 +1,13 @@ /* SESS-MANAGER-IMPL.hpp - global session access and lifecycle - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-impl.cpp b/src/steam/mobject/session/session-impl.cpp index 4242c1710..381c82682 100644 --- a/src/steam/mobject/session/session-impl.cpp +++ b/src/steam/mobject/session/session-impl.cpp @@ -1,24 +1,15 @@ /* SessionImpl - holds the complete session data to be edited by the user - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-impl.cpp diff --git a/src/steam/mobject/session/session-impl.hpp b/src/steam/mobject/session/session-impl.hpp index b90175e82..5577612d9 100644 --- a/src/steam/mobject/session/session-impl.hpp +++ b/src/steam/mobject/session/session-impl.hpp @@ -1,22 +1,13 @@ /* SESSION-IMPL.hpp - holds the complete session data to be edited by the user - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-interface-modules.hpp b/src/steam/mobject/session/session-interface-modules.hpp index a94484e5a..2364be518 100644 --- a/src/steam/mobject/session/session-interface-modules.hpp +++ b/src/steam/mobject/session/session-interface-modules.hpp @@ -1,22 +1,13 @@ /* SESSION-INTERFACE-MODULES.hpp - composing the public session API from several interface modules - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-query.hpp b/src/steam/mobject/session/session-query.hpp index b45d1b5c8..ff900f20a 100644 --- a/src/steam/mobject/session/session-query.hpp +++ b/src/steam/mobject/session/session-query.hpp @@ -1,22 +1,13 @@ /* SESSION-QUERY.hpp - querying for session contents in various ways - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-service-defaults.hpp b/src/steam/mobject/session/session-service-defaults.hpp index 2b966882e..21e00a873 100644 --- a/src/steam/mobject/session/session-service-defaults.hpp +++ b/src/steam/mobject/session/session-service-defaults.hpp @@ -1,22 +1,13 @@ /* SESSION-SERVICE-DEFAULTS.hpp - session implementation service API: manage default objects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-service-explore-scope.hpp b/src/steam/mobject/session/session-service-explore-scope.hpp index c608070ea..e6082aa4b 100644 --- a/src/steam/mobject/session/session-service-explore-scope.hpp +++ b/src/steam/mobject/session/session-service-explore-scope.hpp @@ -1,22 +1,13 @@ /* SESSION-SERVICE-EXPLORE-SCOPE.hpp - session implementation service API: explore scope - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-service-fetch.hpp b/src/steam/mobject/session/session-service-fetch.hpp index 83dba87c4..914efc35d 100644 --- a/src/steam/mobject/session/session-service-fetch.hpp +++ b/src/steam/mobject/session/session-service-fetch.hpp @@ -1,22 +1,13 @@ /* SESSION-SERVICE-FETCH.hpp - session implementation service API: fetch PlacementRef - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-service-mock-index.hpp b/src/steam/mobject/session/session-service-mock-index.hpp index af0072e87..7f9332665 100644 --- a/src/steam/mobject/session/session-service-mock-index.hpp +++ b/src/steam/mobject/session/session-service-mock-index.hpp @@ -1,22 +1,13 @@ /* SESSION-SERVICE-MOCK-INDEX.hpp - session service API: mock PlacementIndex for tests - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-service-mutate.hpp b/src/steam/mobject/session/session-service-mutate.hpp index 441ac9cf4..e38f2346f 100644 --- a/src/steam/mobject/session/session-service-mutate.hpp +++ b/src/steam/mobject/session/session-service-mutate.hpp @@ -1,22 +1,13 @@ /* SESSION-SERVICE-MUTATE.hpp - session implementation service API: add/remove session contents - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session-services.cpp b/src/steam/mobject/session/session-services.cpp index c4b41082d..803bd3aad 100644 --- a/src/steam/mobject/session/session-services.cpp +++ b/src/steam/mobject/session/session-services.cpp @@ -1,24 +1,15 @@ /* SessionServices - accessing Steam-Layer internal session implementation services - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-services.cpp diff --git a/src/steam/mobject/session/session-services.hpp b/src/steam/mobject/session/session-services.hpp index c5e502dec..7bb43f8e1 100644 --- a/src/steam/mobject/session/session-services.hpp +++ b/src/steam/mobject/session/session-services.hpp @@ -1,22 +1,13 @@ /* SESSION-SERVICES.hpp - accessing Steam-Layer internal session implementation services - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/session.cpp b/src/steam/mobject/session/session.cpp index 4fff77d24..c76bff798 100644 --- a/src/steam/mobject/session/session.cpp +++ b/src/steam/mobject/session/session.cpp @@ -1,24 +1,15 @@ /* Session - holds the complete session to be edited by the user - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session.cpp diff --git a/src/steam/mobject/session/specific-contents-query.hpp b/src/steam/mobject/session/specific-contents-query.hpp index 90c219492..fbe336ee6 100644 --- a/src/steam/mobject/session/specific-contents-query.hpp +++ b/src/steam/mobject/session/specific-contents-query.hpp @@ -1,22 +1,13 @@ /* SPECIFIC-CONTENTS-QUERY.hpp - pick specific contents from the model, using a filter - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/session/wish.cpp b/src/steam/mobject/session/wish.cpp index d9078e078..495ba62bf 100644 --- a/src/steam/mobject/session/wish.cpp +++ b/src/steam/mobject/session/wish.cpp @@ -1,24 +1,15 @@ /* Wish - LocatingPin representing a low-priority directive - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file wish.cpp diff --git a/src/steam/mobject/session/wish.hpp b/src/steam/mobject/session/wish.hpp index 3bce2b999..841eb77f8 100644 --- a/src/steam/mobject/session/wish.hpp +++ b/src/steam/mobject/session/wish.hpp @@ -1,22 +1,13 @@ /* WISH.hpp - LocatingPin representing a low-priority directive - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/mobject/test-dummy-mobject.hpp b/src/steam/mobject/test-dummy-mobject.hpp index ba17c1b93..ba073f4b0 100644 --- a/src/steam/mobject/test-dummy-mobject.hpp +++ b/src/steam/mobject/test-dummy-mobject.hpp @@ -1,22 +1,13 @@ /* TEST-DUMMY-MOBJECT.hpp - dummy MObject hierarchy for unit tests - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/dummy-player-interface-proxy.cpp b/src/steam/play/dummy-player-interface-proxy.cpp index 32b667255..ed18f6f6c 100644 --- a/src/steam/play/dummy-player-interface-proxy.cpp +++ b/src/steam/play/dummy-player-interface-proxy.cpp @@ -1,24 +1,15 @@ /* DummyPlayer(Proxy) - access point and service implementing a dummy test player - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ diff --git a/src/steam/play/dummy-player-service.cpp b/src/steam/play/dummy-player-service.cpp index 20529e341..0fc14502f 100644 --- a/src/steam/play/dummy-player-service.cpp +++ b/src/steam/play/dummy-player-service.cpp @@ -1,24 +1,15 @@ /* DummyPlayerService - access point and service implementing a dummy test player - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dummy-player-service.cpp @@ -138,8 +129,8 @@ namespace steam { { (void)ifa; return - "Copyright (C) Lumiera.org\n" - " 2009 Hermann Vosseler "; + "Copyright (C)\n" + " 2009, Hermann Vosseler "; } ) , LUMIERA_INTERFACE_INLINE (license, @@ -147,19 +138,11 @@ namespace steam { { (void)ifa; return - "This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n" - "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" - "\n" - "You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"; + "**Lumiera** is free software; you can redistribute it and/or modify it\n" + "under the terms of the GNU General Public License as published by the\n" + "Free Software Foundation; either version 2 of the License, or (at your\n" + "option) any later version. See the file COPYING for further details." + ; } ) , LUMIERA_INTERFACE_INLINE (state, diff --git a/src/steam/play/dummy-player-service.hpp b/src/steam/play/dummy-player-service.hpp index a457ee3c6..930557f9d 100644 --- a/src/steam/play/dummy-player-service.hpp +++ b/src/steam/play/dummy-player-service.hpp @@ -1,22 +1,13 @@ /* DUMMY-PLAYER-SERVICE.hpp - service implementing a dummy test player - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/output-director.cpp b/src/steam/play/output-director.cpp index b8039fb88..10321f833 100644 --- a/src/steam/play/output-director.cpp +++ b/src/steam/play/output-director.cpp @@ -1,24 +1,15 @@ /* OutputDirector - handling all the real external output connections - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file output-director.cpp diff --git a/src/steam/play/output-director.hpp b/src/steam/play/output-director.hpp index 284e125af..e555bde55 100644 --- a/src/steam/play/output-director.hpp +++ b/src/steam/play/output-director.hpp @@ -1,22 +1,13 @@ /* OUTPUT-DIRECTOR.hpp - handling all the real external output connections - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/output-manager.hpp b/src/steam/play/output-manager.hpp index 999ddc753..88a6b4c18 100644 --- a/src/steam/play/output-manager.hpp +++ b/src/steam/play/output-manager.hpp @@ -1,22 +1,13 @@ /* OUTPUT-MANAGER.hpp - handling all the real external output connections - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/output-slot-connection.hpp b/src/steam/play/output-slot-connection.hpp index 4022710e5..03d52c142 100644 --- a/src/steam/play/output-slot-connection.hpp +++ b/src/steam/play/output-slot-connection.hpp @@ -1,22 +1,13 @@ /* OUTPUT-SLOT-CONNECTION.hpp - implementation API for concrete output slots - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/output-slot.cpp b/src/steam/play/output-slot.cpp index 2fafdf858..b9908edd2 100644 --- a/src/steam/play/output-slot.cpp +++ b/src/steam/play/output-slot.cpp @@ -1,24 +1,15 @@ /* OutputSlot - capability to transfer data to a physical output - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file output-slot.cpp diff --git a/src/steam/play/output-slot.hpp b/src/steam/play/output-slot.hpp index a992d277a..70f129788 100644 --- a/src/steam/play/output-slot.hpp +++ b/src/steam/play/output-slot.hpp @@ -1,22 +1,13 @@ /* OUTPUT-SLOT.hpp - capability to transfer data to a physical output - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/play-controller.cpp b/src/steam/play/play-controller.cpp index e05e568a4..5bce4954c 100644 --- a/src/steam/play/play-controller.cpp +++ b/src/steam/play/play-controller.cpp @@ -1,24 +1,15 @@ /* PlayProcess - frontend to control an play process - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file play-controller.cpp diff --git a/src/steam/play/play-controller.hpp b/src/steam/play/play-controller.hpp index 79cc1bbbc..d0ed21507 100644 --- a/src/steam/play/play-controller.hpp +++ b/src/steam/play/play-controller.hpp @@ -1,22 +1,13 @@ /* PLAY-CONTROLLER.hpp - frontend handle to control an play process - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/play-process.cpp b/src/steam/play/play-process.cpp index d95998753..5cfd2751a 100644 --- a/src/steam/play/play-process.cpp +++ b/src/steam/play/play-process.cpp @@ -1,24 +1,15 @@ /* PlayProcess - state frame for an ongoing play/render process - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file play-process.cpp diff --git a/src/steam/play/play-process.hpp b/src/steam/play/play-process.hpp index 425cffec5..8ac6c3386 100644 --- a/src/steam/play/play-process.hpp +++ b/src/steam/play/play-process.hpp @@ -1,22 +1,13 @@ /* PLAY-PROCESS.hpp - state frame for an ongoing play/render process - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/play-service.cpp b/src/steam/play/play-service.cpp index af99730aa..5be3aefd9 100644 --- a/src/steam/play/play-service.cpp +++ b/src/steam/play/play-service.cpp @@ -1,24 +1,15 @@ /* PlayService - interface: render- and playback control - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file play-service.cpp diff --git a/src/steam/play/play-service.hpp b/src/steam/play/play-service.hpp index 819354727..e53f25d06 100644 --- a/src/steam/play/play-service.hpp +++ b/src/steam/play/play-service.hpp @@ -1,22 +1,13 @@ /* PLAY-SERVICE.hpp - interface: render- and playback control - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/render-configurator.cpp b/src/steam/play/render-configurator.cpp index fee7606f3..1b0e54874 100644 --- a/src/steam/play/render-configurator.cpp +++ b/src/steam/play/render-configurator.cpp @@ -1,24 +1,15 @@ /* RenderConfigurator - strategy to help building an actual render calculation stream - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file render-configurator.cpp diff --git a/src/steam/play/render-configurator.hpp b/src/steam/play/render-configurator.hpp index e3c263c8b..cf799da6a 100644 --- a/src/steam/play/render-configurator.hpp +++ b/src/steam/play/render-configurator.hpp @@ -1,22 +1,13 @@ /* RENDER-CONFIGURATOR.hpp - strategy to help building an actual render calculation stream - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/sound/jack-output.cpp b/src/steam/play/sound/jack-output.cpp index 950feaf3f..32d9890cb 100644 --- a/src/steam/play/sound/jack-output.cpp +++ b/src/steam/play/sound/jack-output.cpp @@ -1,24 +1,15 @@ /* JackOutput - Jack audio connection client - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file jack-output.cpp diff --git a/src/steam/play/sound/jack-output.hpp b/src/steam/play/sound/jack-output.hpp index b14a3478c..5b4a23bd4 100644 --- a/src/steam/play/sound/jack-output.hpp +++ b/src/steam/play/sound/jack-output.hpp @@ -1,22 +1,13 @@ /* JACK-OUTPUT.hpp - Jack audio connection client - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/play/timings.cpp b/src/steam/play/timings.cpp index 123d58e2c..f1d185859 100644 --- a/src/steam/play/timings.cpp +++ b/src/steam/play/timings.cpp @@ -1,24 +1,15 @@ /* Timings - timing specifications for a frame quantised data stream - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timings.cpp diff --git a/src/steam/play/timings.hpp b/src/steam/play/timings.hpp index 51a8411fd..aa840704b 100644 --- a/src/steam/play/timings.hpp +++ b/src/steam/play/timings.hpp @@ -1,22 +1,13 @@ /* TIMINGS.hpp - timing specifications for a frame quantised data stream - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/steam/streamtype.cpp b/src/steam/streamtype.cpp index 8a110b68c..1ffd51ac7 100644 --- a/src/steam/streamtype.cpp +++ b/src/steam/streamtype.cpp @@ -1,24 +1,15 @@ /* StreamType - classification of media stream types - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file streamtype.cpp diff --git a/src/steam/streamtype.hpp b/src/steam/streamtype.hpp index 83788cd79..45346d470 100644 --- a/src/steam/streamtype.hpp +++ b/src/steam/streamtype.hpp @@ -1,22 +1,13 @@ /* STREAMTYPE.hpp - classification of media stream types - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/tool/alsa.c b/src/tool/alsa.c index 83cd839c7..23fb6f944 100644 --- a/src/tool/alsa.c +++ b/src/tool/alsa.c @@ -1,24 +1,15 @@ /* ALSA - sound output backend using the Advanced Linux Sound Architecture - Copyright (C) Lumiera.org - 2011, Odin Omdal Hørthe + Copyright (C) + 2011, Odin Omdal Hørthe - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file alsa.c diff --git a/src/tool/alsa.h b/src/tool/alsa.h index 082ed8388..9ed2a257f 100644 --- a/src/tool/alsa.h +++ b/src/tool/alsa.h @@ -1,22 +1,13 @@ /* ALSA.h - sound output backend using the Advanced Linux Sound Architecture - Copyright (C) Lumiera.org - 2011, Odin Omdal Hørthe + Copyright (C) + 2011, Odin Omdal Hørthe - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/tool/luidgen.c b/src/tool/luidgen.c index 64b069321..bd2478f80 100644 --- a/src/tool/luidgen.c +++ b/src/tool/luidgen.c @@ -1,24 +1,15 @@ /* Luidgen - generate and replace Lumiera UIDs for source files - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file luidgen.c diff --git a/src/tool/main.c b/src/tool/main.c index d0e096b64..0cc2fee35 100644 --- a/src/tool/main.c +++ b/src/tool/main.c @@ -1,24 +1,15 @@ /* OutputProbe - tool to investigate external output connections - Copyright (C) Lumiera.org - 2011, Odin Omdal Hørthe + Copyright (C) + 2011, Odin Omdal Hørthe - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file main.c diff --git a/src/tool/rsvg-convert.c b/src/tool/rsvg-convert.c index 0bcb905ac..ef7f3acc0 100644 --- a/src/tool/rsvg-convert.c +++ b/src/tool/rsvg-convert.c @@ -1,27 +1,18 @@ /* rsvg-convert.c - Command line utility for exercising rsvg with cairo. - Copyright (C) Red Hat, Inc. - 2005, Carl Worth - Caleb Moore - Dom Lachowicz - 2008, Joel Holdsworth + Copyright (C) Red Hat, Inc. + 2005, Carl Worth + Caleb Moore + Dom Lachowicz + 2008, Joel Holdsworth - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file rsvg-convert.c diff --git a/src/vault/common.hpp b/src/vault/common.hpp index dbe0d616e..2e9c8c338 100644 --- a/src/vault/common.hpp +++ b/src/vault/common.hpp @@ -2,22 +2,13 @@ COMMON.hpp - common types and definitions for the Vault-Layer - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/enginefacade.cpp b/src/vault/enginefacade.cpp index bd6f8e713..8249582df 100644 --- a/src/vault/enginefacade.cpp +++ b/src/vault/enginefacade.cpp @@ -1,24 +1,15 @@ /* EngineFacade - access point for communicating with the render engine - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file enginefacade.cpp diff --git a/src/vault/enginefacade.hpp b/src/vault/enginefacade.hpp index 903cec6f1..0acf53d5f 100644 --- a/src/vault/enginefacade.hpp +++ b/src/vault/enginefacade.hpp @@ -1,22 +1,13 @@ /* ENGINEFACADE.hpp - access point for communicating with the render engine - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/activity-lang.cpp b/src/vault/gear/activity-lang.cpp index d6ae52481..a3467285d 100644 --- a/src/vault/gear/activity-lang.cpp +++ b/src/vault/gear/activity-lang.cpp @@ -1,24 +1,15 @@ /* ActivityLang - definition language framework for scheduler activities - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file activity-lang.cpp ** Supporting implementation for the scheduler activity language framework. diff --git a/src/vault/gear/activity-lang.hpp b/src/vault/gear/activity-lang.hpp index 5c2dfed7e..3fc83755a 100644 --- a/src/vault/gear/activity-lang.hpp +++ b/src/vault/gear/activity-lang.hpp @@ -1,22 +1,13 @@ /* ACTIVITY-LANG.hpp - definition language framework for scheduler activities - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/activity-term.hpp b/src/vault/gear/activity-term.hpp index 2f8f9caef..488e12f15 100644 --- a/src/vault/gear/activity-term.hpp +++ b/src/vault/gear/activity-term.hpp @@ -1,22 +1,13 @@ /* ACTIVITY-TERM.hpp - definition language framework for scheduler activities - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/activity.hpp b/src/vault/gear/activity.hpp index a17531f08..7e1ba6ead 100644 --- a/src/vault/gear/activity.hpp +++ b/src/vault/gear/activity.hpp @@ -1,22 +1,13 @@ /* ACTIVITY.hpp - elementary operation to be handled by the scheduler - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/block-flow.hpp b/src/vault/gear/block-flow.hpp index 943cd7f79..c3740a341 100644 --- a/src/vault/gear/block-flow.hpp +++ b/src/vault/gear/block-flow.hpp @@ -1,22 +1,13 @@ /* BLOCK-FLOW.hpp - specialised custom allocator to manage scheduler data - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/engine-config.cpp b/src/vault/gear/engine-config.cpp index ae1657430..0e4fdc463 100644 --- a/src/vault/gear/engine-config.cpp +++ b/src/vault/gear/engine-config.cpp @@ -1,24 +1,15 @@ /* EngineConfig - access point to any kind of engine configuration parameters - Copyright (C) Lumiera.org - 2013, Hermann Vosseler + Copyright (C) + 2013, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file engine-config.cpp diff --git a/src/vault/gear/engine-config.hpp b/src/vault/gear/engine-config.hpp index ed4333bc5..4ec9ad3c8 100644 --- a/src/vault/gear/engine-config.hpp +++ b/src/vault/gear/engine-config.hpp @@ -1,22 +1,13 @@ /* ENGINE-CONFIG.h - access point to any kind of engine configuration parameters - Copyright (C) Lumiera.org - 2013, Hermann Vosseler + Copyright (C) + 2013, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/engine-observer.hpp b/src/vault/gear/engine-observer.hpp index 1c7ac8159..001933ee6 100644 --- a/src/vault/gear/engine-observer.hpp +++ b/src/vault/gear/engine-observer.hpp @@ -1,22 +1,13 @@ /* ENGINE-OBSERVER.hpp - collection and maintenance of engine performance indicators - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/job.cpp b/src/vault/gear/job.cpp index 579e21f22..4d2b3e85c 100644 --- a/src/vault/gear/job.cpp +++ b/src/vault/gear/job.cpp @@ -1,24 +1,15 @@ /* Job - render job closure - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file job.cpp diff --git a/src/vault/gear/job.h b/src/vault/gear/job.h index c7767de4c..1b936c6b8 100644 --- a/src/vault/gear/job.h +++ b/src/vault/gear/job.h @@ -1,22 +1,13 @@ /* JOB.h - render job closure - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/load-controller.hpp b/src/vault/gear/load-controller.hpp index 519e6ea56..e0df1b311 100644 --- a/src/vault/gear/load-controller.hpp +++ b/src/vault/gear/load-controller.hpp @@ -1,22 +1,13 @@ /* LOAD-CONTROLLER.hpp - coordinator for scheduler resource usage - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/nop-job-functor.hpp b/src/vault/gear/nop-job-functor.hpp index d83ef8926..222555725 100644 --- a/src/vault/gear/nop-job-functor.hpp +++ b/src/vault/gear/nop-job-functor.hpp @@ -1,22 +1,13 @@ /* NOP-JOB-FUNCTOR.hpp - a render job to do nothing - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/scheduler-commutator.hpp b/src/vault/gear/scheduler-commutator.hpp index 38b46de1a..7ce806cbf 100644 --- a/src/vault/gear/scheduler-commutator.hpp +++ b/src/vault/gear/scheduler-commutator.hpp @@ -1,22 +1,13 @@ /* SCHEDULER-COMMUTATOR.hpp - coordination layer of the render engine scheduler - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/scheduler-diagnostics.hpp b/src/vault/gear/scheduler-diagnostics.hpp index add74d70f..153d79351 100644 --- a/src/vault/gear/scheduler-diagnostics.hpp +++ b/src/vault/gear/scheduler-diagnostics.hpp @@ -1,22 +1,13 @@ /* SCHEDULER-DIAGNOSTICS.hpp - diagnostic facility to investigate scheduler operation - Copyright (C) Lumiera.org - 2013, Hermann Vosseler + Copyright (C) + 2013, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/scheduler-frontend.cpp b/src/vault/gear/scheduler-frontend.cpp index 334d491c7..c2bbefa28 100644 --- a/src/vault/gear/scheduler-frontend.cpp +++ b/src/vault/gear/scheduler-frontend.cpp @@ -1,24 +1,15 @@ /* SchedulerFrontend - access point to the scheduler within the renderengine - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-frontend.cpp diff --git a/src/vault/gear/scheduler-frontend.hpp b/src/vault/gear/scheduler-frontend.hpp index 21063296e..87589e74b 100644 --- a/src/vault/gear/scheduler-frontend.hpp +++ b/src/vault/gear/scheduler-frontend.hpp @@ -1,22 +1,13 @@ /* SCHEDULER-FRONTEND.hpp - access point to the scheduler within the renderengine - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/scheduler-invocation.hpp b/src/vault/gear/scheduler-invocation.hpp index 28228dfad..6f181e6a0 100644 --- a/src/vault/gear/scheduler-invocation.hpp +++ b/src/vault/gear/scheduler-invocation.hpp @@ -1,22 +1,13 @@ /* SCHEDULER-INVOCATION.hpp - invocation layer of the render engine scheduler - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/scheduler.hpp b/src/vault/gear/scheduler.hpp index e564312aa..3d50a493e 100644 --- a/src/vault/gear/scheduler.hpp +++ b/src/vault/gear/scheduler.hpp @@ -1,22 +1,13 @@ /* SCHEDULER.hpp - coordination of render activities under timing and dependency constraints - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/special-job-fun.hpp b/src/vault/gear/special-job-fun.hpp index 5c6a35dc2..2602ffdf2 100644 --- a/src/vault/gear/special-job-fun.hpp +++ b/src/vault/gear/special-job-fun.hpp @@ -1,22 +1,13 @@ /* SPECIAL-JOB-FUN.hpp - a one-time render job to do something special - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/gear/work-force.cpp b/src/vault/gear/work-force.cpp index 9be35598d..6d8cd4bb2 100644 --- a/src/vault/gear/work-force.cpp +++ b/src/vault/gear/work-force.cpp @@ -1,24 +1,15 @@ /* WorkForce.hpp - actively coordinated pool of workers for rendering - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file work-force.cpp ** Implementation of render worker coordination. diff --git a/src/vault/gear/work-force.hpp b/src/vault/gear/work-force.hpp index b58a1e5a9..a1bda4ba3 100644 --- a/src/vault/gear/work-force.hpp +++ b/src/vault/gear/work-force.hpp @@ -1,22 +1,13 @@ /* WORK-FORCE.hpp - actively coordinated pool of workers for rendering - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/media-access-facade.cpp b/src/vault/media-access-facade.cpp index 5f89bd8ed..f6db55e35 100644 --- a/src/vault/media-access-facade.cpp +++ b/src/vault/media-access-facade.cpp @@ -1,24 +1,15 @@ /* MediaAccessFacade - functions for querying media file and channels. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file media-access-facade.cpp diff --git a/src/vault/media-access-facade.hpp b/src/vault/media-access-facade.hpp index 339ef7d53..b7df99014 100644 --- a/src/vault/media-access-facade.hpp +++ b/src/vault/media-access-facade.hpp @@ -1,22 +1,13 @@ /* MEDIA-ACCESS-FACADE.hpp - functions for querying media file and channels. - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/mem/extent-family.hpp b/src/vault/mem/extent-family.hpp index 22d678be4..3c51dac84 100644 --- a/src/vault/mem/extent-family.hpp +++ b/src/vault/mem/extent-family.hpp @@ -1,22 +1,13 @@ /* EXTENT-FAMILY.hpp - maintain a sequence of memory extents used cyclically - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/netnodefacade.cpp b/src/vault/netnodefacade.cpp index 75c28cb41..6582ac2bc 100644 --- a/src/vault/netnodefacade.cpp +++ b/src/vault/netnodefacade.cpp @@ -1,24 +1,15 @@ /* NetNodeFacade - access point for maintaining a renderfarm node - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file netnodefacade.cpp diff --git a/src/vault/netnodefacade.hpp b/src/vault/netnodefacade.hpp index 000d7b420..f24dac05b 100644 --- a/src/vault/netnodefacade.hpp +++ b/src/vault/netnodefacade.hpp @@ -1,22 +1,13 @@ /* NETNODEFACADE.hpp - access point for maintaining a renderfarm node - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/real-clock.cpp b/src/vault/real-clock.cpp index 829213c87..3874ca6b5 100644 --- a/src/vault/real-clock.cpp +++ b/src/vault/real-clock.cpp @@ -1,24 +1,15 @@ /* RealClock - convenience front-end to access the system clock - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file real-clock.cpp diff --git a/src/vault/real-clock.hpp b/src/vault/real-clock.hpp index e253714f1..f1fdd1078 100644 --- a/src/vault/real-clock.hpp +++ b/src/vault/real-clock.hpp @@ -1,22 +1,13 @@ /* REAL-CLOCK.hpp - convenience front-end to access the system clock - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/src/vault/scriptrunnerfacade.cpp b/src/vault/scriptrunnerfacade.cpp index 80ec4b05f..c46b39f35 100644 --- a/src/vault/scriptrunnerfacade.cpp +++ b/src/vault/scriptrunnerfacade.cpp @@ -1,24 +1,15 @@ /* ScriptRunnerFacade - access point for running a script within Lumiera application context - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scriptrunnerfacade.cpp diff --git a/src/vault/scriptrunnerfacade.hpp b/src/vault/scriptrunnerfacade.hpp index 715592c96..c6b66b2bb 100644 --- a/src/vault/scriptrunnerfacade.hpp +++ b/src/vault/scriptrunnerfacade.hpp @@ -1,22 +1,13 @@ /* SCRIPTRUNNERFACADE.hpp - access point for running a script within Lumiera application context - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/basics/call-queue-test.cpp b/tests/basics/call-queue-test.cpp index da7998464..df3fb5e48 100644 --- a/tests/basics/call-queue-test.cpp +++ b/tests/basics/call-queue-test.cpp @@ -1,24 +1,15 @@ /* CallQueue(Test) - verify queue based dispatch of bound function objects - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file call-queue-test.cpp ** unit test \ref CallQueue_test diff --git a/tests/basics/dependency-configuration-test.cpp b/tests/basics/dependency-configuration-test.cpp index 15cea98fd..3d4bbfb22 100644 --- a/tests/basics/dependency-configuration-test.cpp +++ b/tests/basics/dependency-configuration-test.cpp @@ -1,24 +1,15 @@ /* DependencyConfiguration(Test) - verify configuration for injecting dependencies - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dependency-configuration-test.cpp ** unit test \ref DependencyConfiguration_test diff --git a/tests/basics/dependency-factory-test.cpp b/tests/basics/dependency-factory-test.cpp index 4beae1237..e196835d7 100644 --- a/tests/basics/dependency-factory-test.cpp +++ b/tests/basics/dependency-factory-test.cpp @@ -1,24 +1,15 @@ /* DependencyFactory(Test) - verify modes of creating singletons and dependencies - Copyright (C) Lumiera.org - 2013, Hermann Vosseler + Copyright (C) + 2013, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dependency-factory-test.cpp ** unit test \ref DependencyFactory_test diff --git a/tests/basics/diagnostic-context-test.cpp b/tests/basics/diagnostic-context-test.cpp index e00e1d33c..da2deebf3 100644 --- a/tests/basics/diagnostic-context-test.cpp +++ b/tests/basics/diagnostic-context-test.cpp @@ -1,24 +1,15 @@ /* DiagnosticContext(Test) - verify thread local stack for collecting diagnostics - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diagnostic-context-test.cpp ** unit test \ref DiagnosticContext_test diff --git a/tests/basics/singleton-subclass-test.cpp b/tests/basics/singleton-subclass-test.cpp index 55ba789cd..9bf012cdc 100644 --- a/tests/basics/singleton-subclass-test.cpp +++ b/tests/basics/singleton-subclass-test.cpp @@ -1,24 +1,15 @@ /* SingletonSubclass(Test) - actually creating a subclass of the Singleton Type - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file singleton-subclass-test.cpp ** unit test \ref SingletonSubclass_test diff --git a/tests/basics/singleton-test.cpp b/tests/basics/singleton-test.cpp index 55a64bb37..e952174cd 100644 --- a/tests/basics/singleton-test.cpp +++ b/tests/basics/singleton-test.cpp @@ -1,24 +1,15 @@ /* Singleton(Test) - unittest for our Singleton template - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file singleton-test.cpp ** unit test \ref Singleton_test diff --git a/tests/basics/singleton-testmock-test.cpp b/tests/basics/singleton-testmock-test.cpp index eac064b3d..4d51b8918 100644 --- a/tests/basics/singleton-testmock-test.cpp +++ b/tests/basics/singleton-testmock-test.cpp @@ -1,24 +1,15 @@ /* SingletonTestMock(Test) - using Singleton for injecting Test-Mocks - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file singleton-testmock-test.cpp ** unit test \ref SingletonTestMock_test diff --git a/tests/basics/stream-type-basics-test.cpp b/tests/basics/stream-type-basics-test.cpp index 56b611f17..2aee2146a 100644 --- a/tests/basics/stream-type-basics-test.cpp +++ b/tests/basics/stream-type-basics-test.cpp @@ -1,24 +1,15 @@ /* StreamTypeBasics(Test) - check the fundamentals of stream type information - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file stream-type-basics-test.cpp ** unit test \ref StreamTypeBasics_test diff --git a/tests/basics/stream-type-lifecycle-test.cpp b/tests/basics/stream-type-lifecycle-test.cpp index 4154bbc09..dabb5bff4 100644 --- a/tests/basics/stream-type-lifecycle-test.cpp +++ b/tests/basics/stream-type-lifecycle-test.cpp @@ -1,24 +1,15 @@ /* StreamTypeLifecycle(Test) - check lifecycle of the stream type registration - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file stream-type-lifecycle-test.cpp ** unit test \ref StreamTypeLifecycle_test diff --git a/tests/basics/test-target-obj.hpp b/tests/basics/test-target-obj.hpp index d09b5a598..f4ca332eb 100644 --- a/tests/basics/test-target-obj.hpp +++ b/tests/basics/test-target-obj.hpp @@ -1,22 +1,13 @@ /* TEST-TARGET-OBJ.hpp - a test (stub) target object for testing the factories - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/basics/teststreamtypes.hpp b/tests/basics/teststreamtypes.hpp index bdb814ca1..216e51af7 100644 --- a/tests/basics/teststreamtypes.hpp +++ b/tests/basics/teststreamtypes.hpp @@ -1,22 +1,13 @@ /* TESTSTREAMTYPES.hpp - create test (stub) stream type information - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/basics/time/digxel-configurations-test.cpp b/tests/basics/time/digxel-configurations-test.cpp index 77b5033e8..73d10b40d 100644 --- a/tests/basics/time/digxel-configurations-test.cpp +++ b/tests/basics/time/digxel-configurations-test.cpp @@ -1,24 +1,15 @@ /* DigxelConfigurations(Test) - verify predefined standard Digxel configurations - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file digxel-configurations-test.cpp ** unit test \ref DigxelConfigurations_test diff --git a/tests/basics/time/digxel-test.cpp b/tests/basics/time/digxel-test.cpp index ac55234ab..adcf1b3c5 100644 --- a/tests/basics/time/digxel-test.cpp +++ b/tests/basics/time/digxel-test.cpp @@ -1,24 +1,15 @@ /* Digxel(Test) - cover behaviour of a generic number-element holder - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file digxel-test.cpp ** unit test \ref Digxel_test diff --git a/tests/basics/time/format-support-test.cpp b/tests/basics/time/format-support-test.cpp index d2e57c729..a5b27b279 100644 --- a/tests/basics/time/format-support-test.cpp +++ b/tests/basics/time/format-support-test.cpp @@ -1,24 +1,15 @@ /* FormatSupport(Test) - verify the configuration to support a specific format - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file format-support-test.cpp ** unit test \ref FormatSupport_test diff --git a/tests/basics/time/quantiser-basics-test.cpp b/tests/basics/time/quantiser-basics-test.cpp index 3d6a84cf3..81909f596 100644 --- a/tests/basics/time/quantiser-basics-test.cpp +++ b/tests/basics/time/quantiser-basics-test.cpp @@ -1,24 +1,15 @@ /* QuantiserBasics(Test) - a demo quantiser to cover the basic quantiser API - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file quantiser-basics-test.cpp ** unit test \ref QuantiserBasics_test diff --git a/tests/basics/time/time-basics-test.cpp b/tests/basics/time/time-basics-test.cpp index c8161e3fe..313d17285 100644 --- a/tests/basics/time/time-basics-test.cpp +++ b/tests/basics/time/time-basics-test.cpp @@ -1,24 +1,15 @@ /* TimeBasics(Test) - working with Lumiera's internal Time values - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-basics-test.cpp ** unit test \ref TimeBasics_test diff --git a/tests/basics/time/time-control-test.cpp b/tests/basics/time/time-control-test.cpp index 93f044573..bdd2876ee 100644 --- a/tests/basics/time/time-control-test.cpp +++ b/tests/basics/time/time-control-test.cpp @@ -1,24 +1,15 @@ /* TimeControl(Test) - mutating time entities with life connection and feedback - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-control-test.cpp ** unit test \ref TimeControl_test diff --git a/tests/basics/time/time-formats-test.cpp b/tests/basics/time/time-formats-test.cpp index 12f333000..e3c58f63e 100644 --- a/tests/basics/time/time-formats-test.cpp +++ b/tests/basics/time/time-formats-test.cpp @@ -1,24 +1,15 @@ /* TimeFormats(Test) - timecode handling and formatting - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-formats-test.cpp ** unit test \ref TimeFormats_test diff --git a/tests/basics/time/time-mutation-test.cpp b/tests/basics/time/time-mutation-test.cpp index 178b1ffe0..1ccb38e6b 100644 --- a/tests/basics/time/time-mutation-test.cpp +++ b/tests/basics/time/time-mutation-test.cpp @@ -1,24 +1,15 @@ /* TimeMutation(Test) - explicitly changing time specifications - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-mutation-test.cpp ** unit test \ref TimeMutation_test diff --git a/tests/basics/time/time-parsing-test.cpp b/tests/basics/time/time-parsing-test.cpp index fc6f39f1d..321fd02d8 100644 --- a/tests/basics/time/time-parsing-test.cpp +++ b/tests/basics/time/time-parsing-test.cpp @@ -1,24 +1,15 @@ /* TimeParsing(Test) - handling textual time(code) specifications - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-parsing-test.cpp ** unit test \ref TimeParsing_test diff --git a/tests/basics/time/time-quantisation-test.cpp b/tests/basics/time/time-quantisation-test.cpp index 3e220c1a3..df491d362 100644 --- a/tests/basics/time/time-quantisation-test.cpp +++ b/tests/basics/time/time-quantisation-test.cpp @@ -1,24 +1,15 @@ /* TimeQuantisation(Test) - handling of virtually grid aligned time values - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-quantisation-test.cpp ** unit test \ref TimeQuantisation_test diff --git a/tests/basics/time/time-value-test.cpp b/tests/basics/time/time-value-test.cpp index 611962ed6..e25aed54a 100644 --- a/tests/basics/time/time-value-test.cpp +++ b/tests/basics/time/time-value-test.cpp @@ -1,24 +1,15 @@ /* TimeValue(Test) - working with time values and time intervals in C++... - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-value-test.cpp ** unit test \ref TimeValue_test diff --git a/tests/basics/typed-counter-test.cpp b/tests/basics/typed-counter-test.cpp index 72d0f2bef..d1d71f18b 100644 --- a/tests/basics/typed-counter-test.cpp +++ b/tests/basics/typed-counter-test.cpp @@ -1,24 +1,15 @@ /* TypedCounter(Test) - managing a set of type based contexts - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typed-counter-test.cpp diff --git a/tests/basics/typed-family-member-id-test.cpp b/tests/basics/typed-family-member-id-test.cpp index 39210e3d5..02f8ee125 100644 --- a/tests/basics/typed-family-member-id-test.cpp +++ b/tests/basics/typed-family-member-id-test.cpp @@ -1,24 +1,15 @@ /* TypedFamilyMemberID(Test) - verify type based member ID - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typed-family-member-id-test.cpp diff --git a/tests/basics/visitingtool-concept.cpp b/tests/basics/visitingtool-concept.cpp index ef532af06..0499066e6 100644 --- a/tests/basics/visitingtool-concept.cpp +++ b/tests/basics/visitingtool-concept.cpp @@ -1,24 +1,15 @@ /* VisitingTool(Concept) - concept draft of a Visitor library implementation - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file visitingtool-concept.cpp diff --git a/tests/basics/visitingtool-extended-test.cpp b/tests/basics/visitingtool-extended-test.cpp index 13d21bebd..280094d95 100644 --- a/tests/basics/visitingtool-extended-test.cpp +++ b/tests/basics/visitingtool-extended-test.cpp @@ -1,24 +1,15 @@ /* VisitingToolExtended(Test) - check obscure corner cases of visitor lib implementation - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file visitingtool-extended-test.cpp ** unit test \ref VisitingToolExtended_test diff --git a/tests/basics/visitingtool-test.cpp b/tests/basics/visitingtool-test.cpp index 9c6b7c655..3fdca509a 100644 --- a/tests/basics/visitingtool-test.cpp +++ b/tests/basics/visitingtool-test.cpp @@ -1,24 +1,15 @@ /* VisitingTool(Test) - check the standard visitor use case - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file visitingtool-test.cpp ** unit test \ref VisitingTool_test diff --git a/tests/basics/zombie-check-test.cpp b/tests/basics/zombie-check-test.cpp index 0fc586d52..7b88914d3 100644 --- a/tests/basics/zombie-check-test.cpp +++ b/tests/basics/zombie-check-test.cpp @@ -1,24 +1,15 @@ /* ZombieCheck(Test) - verify a trap for accessing deceased objects - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file zombie-check-test.cpp ** unit test \ref Singleton_test diff --git a/tests/core/application/subsystem-runner-test.cpp b/tests/core/application/subsystem-runner-test.cpp index 84e730408..ba7580e4a 100644 --- a/tests/core/application/subsystem-runner-test.cpp +++ b/tests/core/application/subsystem-runner-test.cpp @@ -1,24 +1,15 @@ /* SubsystemRunner(Test) - validate starting and stopping of dependent subsystems - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file subsystem-runner-test.cpp ** The \ref SubsystemRunner_test performs various scenarios diff --git a/tests/core/application/test-configloader.c b/tests/core/application/test-configloader.c index bfd75a7e7..0db7ab7f0 100644 --- a/tests/core/application/test-configloader.c +++ b/tests/core/application/test-configloader.c @@ -1,25 +1,16 @@ /* TEST-CONFIGLOADER - test the config system - Copyright (C) Lumiera.org - 2008, Christian Thaeter - Simeon Voelkel + Copyright (C) + 2008, Christian Thaeter + 2008, Simeon Voelkel - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-configloader.c ** C unit test to cover a config system draft implementation diff --git a/tests/core/application/test-interfaces.c b/tests/core/application/test-interfaces.c index 16db80433..09116192f 100644 --- a/tests/core/application/test-interfaces.c +++ b/tests/core/application/test-interfaces.c @@ -1,24 +1,15 @@ /* TEST-INTERFACES - test interfaces declaration and implementation - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-interfaces.c ** C unit test to cover the basics of our interface and plugin-loading system @@ -120,8 +111,8 @@ LUMIERA_INTERFACE_INSTANCE (lumieraorg_interfacedescriptor, 0, { (void)iface; return - "Copyright (C) Lumiera.org\n" - " 2008 Christian Thaeter "; + "Copyright (C)\n" + " 2008, Christian Thaeter "; } ), LUMIERA_INTERFACE_INLINE (license, @@ -129,19 +120,11 @@ LUMIERA_INTERFACE_INSTANCE (lumieraorg_interfacedescriptor, 0, { (void)iface; return - "This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n" - "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" - "\n" - "You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"; + "**Lumiera** is free software; you can redistribute it and/or modify it\n" + "under the terms of the GNU General Public License as published by the\n" + "Free Software Foundation; either version 2 of the License, or (at your\n" + "option) any later version. See the file COPYING for further details." + ; } ), diff --git a/tests/core/steam/asset/asset-category-test.cpp b/tests/core/steam/asset/asset-category-test.cpp index 6a0c0df1b..f5febb30c 100644 --- a/tests/core/steam/asset/asset-category-test.cpp +++ b/tests/core/steam/asset/asset-category-test.cpp @@ -1,24 +1,15 @@ /* AssetCategory(Test) - verifying Asset category tuple functions - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file asset-category-test.cpp ** unit test \ref AssetCategory_test diff --git a/tests/core/steam/asset/asset-diagnostics.hpp b/tests/core/steam/asset/asset-diagnostics.hpp index 9480a54fb..ec2eac113 100644 --- a/tests/core/steam/asset/asset-diagnostics.hpp +++ b/tests/core/steam/asset/asset-diagnostics.hpp @@ -1,22 +1,13 @@ /* ASSET-DIAGNOSTICS.hpp - collection of test and debug helpers - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/asset/basicpipetest.cpp b/tests/core/steam/asset/basicpipetest.cpp index 4a075b386..39c1a844e 100644 --- a/tests/core/steam/asset/basicpipetest.cpp +++ b/tests/core/steam/asset/basicpipetest.cpp @@ -1,24 +1,15 @@ /* BasicPipe(Test) - checking the basic properties of Pipe Assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file basicpipetest.cpp ** unit test \ref BasicPipe_test diff --git a/tests/core/steam/asset/compoundmediatest.cpp b/tests/core/steam/asset/compoundmediatest.cpp index d85ce1ad4..d4a7956f6 100644 --- a/tests/core/steam/asset/compoundmediatest.cpp +++ b/tests/core/steam/asset/compoundmediatest.cpp @@ -1,24 +1,15 @@ /* CompoundMedia(Test) - handling multichannel Media Assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file compoundmediatest.cpp ** unit test \ref CompoundMedia_test diff --git a/tests/core/steam/asset/create-asset-test.cpp b/tests/core/steam/asset/create-asset-test.cpp index b41a7af37..dd59364de 100644 --- a/tests/core/steam/asset/create-asset-test.cpp +++ b/tests/core/steam/asset/create-asset-test.cpp @@ -1,24 +1,15 @@ /* CreateAsset(Test) - constructing and registering Assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file create-asset-test.cpp ** unit test \ref CreateAsset_test diff --git a/tests/core/steam/asset/deleteassettest.cpp b/tests/core/steam/asset/deleteassettest.cpp index abe2ef507..a1da80d39 100644 --- a/tests/core/steam/asset/deleteassettest.cpp +++ b/tests/core/steam/asset/deleteassettest.cpp @@ -1,24 +1,15 @@ /* DeleteAsset(Test) - deleting and Asset with all dependencies - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file deleteassettest.cpp ** unit test \ref DeleteAsset_test diff --git a/tests/core/steam/asset/dependent-assets-test.cpp b/tests/core/steam/asset/dependent-assets-test.cpp index 5e2f1cac8..542ea21fa 100644 --- a/tests/core/steam/asset/dependent-assets-test.cpp +++ b/tests/core/steam/asset/dependent-assets-test.cpp @@ -1,24 +1,15 @@ /* DependentAssets(Test) - check the asset dependency handling - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dependent-assets-test.cpp ** unit test \ref DependentAssets_test diff --git a/tests/core/steam/asset/entry-id-test.cpp b/tests/core/steam/asset/entry-id-test.cpp index 2423cd2bf..bb06ddeb2 100644 --- a/tests/core/steam/asset/entry-id-test.cpp +++ b/tests/core/steam/asset/entry-id-test.cpp @@ -1,24 +1,15 @@ /* EntryID(Test) - proof-of-concept test for a combined hash+symbolic ID - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file entry-id-test.cpp ** unit test \ref EntryID_test diff --git a/tests/core/steam/asset/identity-of-assets-test.cpp b/tests/core/steam/asset/identity-of-assets-test.cpp index 0aa2877eb..8a2852045 100644 --- a/tests/core/steam/asset/identity-of-assets-test.cpp +++ b/tests/core/steam/asset/identity-of-assets-test.cpp @@ -1,24 +1,15 @@ /* IdentityOfAssets(Test) - Asset object identity and versioning - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file identity-of-assets-test.cpp ** unit test \ref IdentityOfAssets_test diff --git a/tests/core/steam/asset/make-clip-test.cpp b/tests/core/steam/asset/make-clip-test.cpp index ec30a3e67..60b0288af 100644 --- a/tests/core/steam/asset/make-clip-test.cpp +++ b/tests/core/steam/asset/make-clip-test.cpp @@ -1,24 +1,15 @@ /* MakeClip(Test) - create a Clip from a Media Asset - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file make-clip-test.cpp ** unit test \ref MakeClip_test diff --git a/tests/core/steam/asset/media-structure-query-test.cpp b/tests/core/steam/asset/media-structure-query-test.cpp index d7990e260..fd4139ffe 100644 --- a/tests/core/steam/asset/media-structure-query-test.cpp +++ b/tests/core/steam/asset/media-structure-query-test.cpp @@ -1,24 +1,15 @@ /* MediaStructureQuery(Test) - check functionality used for creating media assets - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file media-structure-query-test.cpp ** unit test \ref MediaStructureQuery_test diff --git a/tests/core/steam/asset/meta/time-grid-basics-test.cpp b/tests/core/steam/asset/meta/time-grid-basics-test.cpp index 7252bfedd..0e06203e5 100644 --- a/tests/core/steam/asset/meta/time-grid-basics-test.cpp +++ b/tests/core/steam/asset/meta/time-grid-basics-test.cpp @@ -1,24 +1,15 @@ /* TimeGridBasics(Test) - verify a simple reference scale for time quantisation - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file time-grid-basics-test.cpp ** unit test \ref TimeGridBasics_test diff --git a/tests/core/steam/asset/ordering-of-assets-test.cpp b/tests/core/steam/asset/ordering-of-assets-test.cpp index ec7ad975e..da96a3676 100644 --- a/tests/core/steam/asset/ordering-of-assets-test.cpp +++ b/tests/core/steam/asset/ordering-of-assets-test.cpp @@ -1,24 +1,15 @@ /* OrderingOfAssets(Test) - equality and comparisons - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ordering-of-assets-test.cpp ** unit test \ref OrderingOfAssets_test diff --git a/tests/core/steam/asset/testasset.cpp b/tests/core/steam/asset/testasset.cpp index 4910e0238..7617c5613 100644 --- a/tests/core/steam/asset/testasset.cpp +++ b/tests/core/steam/asset/testasset.cpp @@ -1,24 +1,15 @@ /* TestClip - test clip (stub) for checking Model/Session functionality - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file testasset.cpp ** Implementation of a mocked Asset for unit tests diff --git a/tests/core/steam/asset/testasset.hpp b/tests/core/steam/asset/testasset.hpp index 6d0c52d6a..0d2025777 100644 --- a/tests/core/steam/asset/testasset.hpp +++ b/tests/core/steam/asset/testasset.hpp @@ -1,22 +1,13 @@ /* TESTASSET.hpp - test asset (stub) for checking internal asset functionality - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/asset/testclipasset.hpp b/tests/core/steam/asset/testclipasset.hpp index b23d524f1..9fd094e19 100644 --- a/tests/core/steam/asset/testclipasset.hpp +++ b/tests/core/steam/asset/testclipasset.hpp @@ -1,22 +1,13 @@ /* TESTCLIPASSET.hpp - test Media-Asset (clip) for checking Assets and MObjects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/asset/typed-id-test.cpp b/tests/core/steam/asset/typed-id-test.cpp index 7abc91981..9c7150994 100644 --- a/tests/core/steam/asset/typed-id-test.cpp +++ b/tests/core/steam/asset/typed-id-test.cpp @@ -1,24 +1,15 @@ /* TypedID(Test) - verifying registration service for ID to type association - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typed-id-test.cpp ** unit test \ref TypedID_test diff --git a/tests/core/steam/control/argument-tuple-accept-test.cpp b/tests/core/steam/control/argument-tuple-accept-test.cpp index da12bb7d6..23a9bc64b 100644 --- a/tests/core/steam/control/argument-tuple-accept-test.cpp +++ b/tests/core/steam/control/argument-tuple-accept-test.cpp @@ -1,24 +1,15 @@ /* ArgumentTupleAccept(Test) - verify synthesising a bind(...) function - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file argument-tuple-accept-test.cpp ** unit test \ref ArgumentTupleAccept_test diff --git a/tests/core/steam/control/command-argument-test.cpp b/tests/core/steam/control/command-argument-test.cpp index ef544c504..f2d88e3b4 100644 --- a/tests/core/steam/control/command-argument-test.cpp +++ b/tests/core/steam/control/command-argument-test.cpp @@ -1,24 +1,15 @@ /* CommandArgument(Test) - checking storage of specifically typed command arguments - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-argument-test.cpp ** unit test \ref CommandArgument_test diff --git a/tests/core/steam/control/command-basic-test.cpp b/tests/core/steam/control/command-basic-test.cpp index b2d1c2a82..dc13ecba4 100644 --- a/tests/core/steam/control/command-basic-test.cpp +++ b/tests/core/steam/control/command-basic-test.cpp @@ -1,24 +1,15 @@ /* CommandBasic(Test) - checking simple SteamDispatcher command definition and execution - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-basic-test.cpp ** unit test \ref CommandBasic_test diff --git a/tests/core/steam/control/command-binding-test.cpp b/tests/core/steam/control/command-binding-test.cpp index cca76b142..f6237517e 100644 --- a/tests/core/steam/control/command-binding-test.cpp +++ b/tests/core/steam/control/command-binding-test.cpp @@ -1,24 +1,15 @@ /* CommandBinding(Test) - special cases of binding command arguments - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-binding-test.cpp ** unit test \ref CommandBinding_test diff --git a/tests/core/steam/control/command-clone-builder-test.cpp b/tests/core/steam/control/command-clone-builder-test.cpp index f082202d1..07b08b8fb 100644 --- a/tests/core/steam/control/command-clone-builder-test.cpp +++ b/tests/core/steam/control/command-clone-builder-test.cpp @@ -1,24 +1,15 @@ /* CommandCloneBuilder(Test) - verify building an implementation clone - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-clone-builder-test.cpp ** unit test \ref CommandCloneBuilder_test diff --git a/tests/core/steam/control/command-equality-test.cpp b/tests/core/steam/control/command-equality-test.cpp index 513a21abf..77eb9385c 100644 --- a/tests/core/steam/control/command-equality-test.cpp +++ b/tests/core/steam/control/command-equality-test.cpp @@ -1,24 +1,15 @@ /* CommandEquality(Test) - verify equality comparisons on command's subsystems - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-equality-test.cpp ** unit test \ref CommandEquality_test diff --git a/tests/core/steam/control/command-instance-manager-test.cpp b/tests/core/steam/control/command-instance-manager-test.cpp index 0577dcb7c..f864044d1 100644 --- a/tests/core/steam/control/command-instance-manager-test.cpp +++ b/tests/core/steam/control/command-instance-manager-test.cpp @@ -1,24 +1,15 @@ /* CommandInstanceManager(Test) - verify helper for setup of actual command definitions - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-instance-manager-test.cpp ** unit test \ref CommandInstanceManager_test diff --git a/tests/core/steam/control/command-message-binding-test.cpp b/tests/core/steam/control/command-message-binding-test.cpp index e578ab28d..0a9e2912e 100644 --- a/tests/core/steam/control/command-message-binding-test.cpp +++ b/tests/core/steam/control/command-message-binding-test.cpp @@ -1,24 +1,15 @@ /* CommandMessageBinding(Test) - verify argument binding via GenNode-Message, with immutable types - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-message-binding-test.cpp ** unit test \ref CommandMessageBinding_test diff --git a/tests/core/steam/control/command-mutation-test.cpp b/tests/core/steam/control/command-mutation-test.cpp index 71d73286f..4edf8f135 100644 --- a/tests/core/steam/control/command-mutation-test.cpp +++ b/tests/core/steam/control/command-mutation-test.cpp @@ -1,24 +1,15 @@ /* CommandMutation(Test) - checking the functor and undo-functor used within Steam-commands - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-mutation-test.cpp ** unit test \ref CommandMutation_test diff --git a/tests/core/steam/control/command-queue-test.cpp b/tests/core/steam/control/command-queue-test.cpp index 377d54a6f..cd0e2e5e2 100644 --- a/tests/core/steam/control/command-queue-test.cpp +++ b/tests/core/steam/control/command-queue-test.cpp @@ -1,24 +1,15 @@ /* CommandQueue(Test) - verify functionality of SteamDispatcher queue component - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ #include "lib/test/run.hpp" diff --git a/tests/core/steam/control/command-registry-test.cpp b/tests/core/steam/control/command-registry-test.cpp index 364b46b16..de4006041 100644 --- a/tests/core/steam/control/command-registry-test.cpp +++ b/tests/core/steam/control/command-registry-test.cpp @@ -1,24 +1,15 @@ /* CommandRegistry(Test) - verify command registration and allocation - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-registry-test.cpp ** unit test \ref CommandRegistry_test diff --git a/tests/core/steam/control/command-setup-test.cpp b/tests/core/steam/control/command-setup-test.cpp index 9066a78dc..141725769 100644 --- a/tests/core/steam/control/command-setup-test.cpp +++ b/tests/core/steam/control/command-setup-test.cpp @@ -1,24 +1,15 @@ /* CommandSetup(Test) - verify helper for setup of actual command definitions - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-setup-test.cpp ** unit test \ref CommandSetup_test diff --git a/tests/core/steam/control/command-use1-test.cpp b/tests/core/steam/control/command-use1-test.cpp index 0ed7ca76f..a7268b5a7 100644 --- a/tests/core/steam/control/command-use1-test.cpp +++ b/tests/core/steam/control/command-use1-test.cpp @@ -1,24 +1,15 @@ /* CommandUse1(Test) - usage aspects I - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-use1-test.cpp ** unit test \ref CommandUse1_test diff --git a/tests/core/steam/control/command-use2-test.cpp b/tests/core/steam/control/command-use2-test.cpp index e2f17ad3a..d07086ed1 100644 --- a/tests/core/steam/control/command-use2-test.cpp +++ b/tests/core/steam/control/command-use2-test.cpp @@ -1,24 +1,15 @@ /* CommandUse2(Test) - usage aspects II - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-use2-test.cpp ** unit test \ref CommandUse2_test diff --git a/tests/core/steam/control/command-use3-test.cpp b/tests/core/steam/control/command-use3-test.cpp index 83427560c..04caa3220 100644 --- a/tests/core/steam/control/command-use3-test.cpp +++ b/tests/core/steam/control/command-use3-test.cpp @@ -1,24 +1,15 @@ /* CommandUse3(Test) - usage aspects III - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file command-use3-test.cpp ** unit test \ref CommandUse3_test diff --git a/tests/core/steam/control/dispatcher-looper-test.cpp b/tests/core/steam/control/dispatcher-looper-test.cpp index d18223eac..1b264bfa6 100644 --- a/tests/core/steam/control/dispatcher-looper-test.cpp +++ b/tests/core/steam/control/dispatcher-looper-test.cpp @@ -1,24 +1,15 @@ /* DispatcherLooper(Test) - verify loop control and timing functionality of SteamDispatcher - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ #include "lib/test/run.hpp" diff --git a/tests/core/steam/control/handling-pattern-basics-test.cpp b/tests/core/steam/control/handling-pattern-basics-test.cpp index 8ad5708ac..6b15fe8be 100644 --- a/tests/core/steam/control/handling-pattern-basics-test.cpp +++ b/tests/core/steam/control/handling-pattern-basics-test.cpp @@ -1,24 +1,15 @@ /* HandlingPatternBasics(Test) - verify elementary operation of a command handling pattern - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file handling-pattern-basics-test.cpp ** unit test \ref HandlingPatternBasics_test diff --git a/tests/core/steam/control/handling-pattern-standard-impl-test.cpp b/tests/core/steam/control/handling-pattern-standard-impl-test.cpp index 3fcb32efb..b8c6dcb87 100644 --- a/tests/core/steam/control/handling-pattern-standard-impl-test.cpp +++ b/tests/core/steam/control/handling-pattern-standard-impl-test.cpp @@ -1,24 +1,15 @@ /* HandlingPatternStandardImpl(Test) - cover the provided standard command handling patterns - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file handling-pattern-standard-impl-test.cpp ** unit test \ref HandlingPatternStandardImpl_test diff --git a/tests/core/steam/control/memento-tie-test.cpp b/tests/core/steam/control/memento-tie-test.cpp index 317f12d4d..1c625b3a3 100644 --- a/tests/core/steam/control/memento-tie-test.cpp +++ b/tests/core/steam/control/memento-tie-test.cpp @@ -1,24 +1,15 @@ /* MementoTie(Test) - check the mechanism for capturing and providing undo-state - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file memento-tie-test.cpp ** unit test \ref MementoTie_test diff --git a/tests/core/steam/control/session-command-function-test.cpp b/tests/core/steam/control/session-command-function-test.cpp index 1e5adca81..1ea244f9a 100644 --- a/tests/core/steam/control/session-command-function-test.cpp +++ b/tests/core/steam/control/session-command-function-test.cpp @@ -1,24 +1,15 @@ /* SessionCommandFunction(Test) - function test of command dispatch via SessionCommand facade - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-command-function-test.cpp diff --git a/tests/core/steam/control/test-dummy-commands.cpp b/tests/core/steam/control/test-dummy-commands.cpp index 9d17af1b7..a62cc9fc6 100644 --- a/tests/core/steam/control/test-dummy-commands.cpp +++ b/tests/core/steam/control/test-dummy-commands.cpp @@ -1,24 +1,15 @@ /* test-dummy-commands - global checksum variables used to build test commands - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-dummy-commands.cpp ** Implementation of dummy command operations for unit tests diff --git a/tests/core/steam/control/test-dummy-commands.hpp b/tests/core/steam/control/test-dummy-commands.hpp index f33f49998..9b6e5d840 100644 --- a/tests/core/steam/control/test-dummy-commands.hpp +++ b/tests/core/steam/control/test-dummy-commands.hpp @@ -1,22 +1,13 @@ /* TEST-DUMMY-COMMANDS.hpp - dummy functions used to build test commands - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/engine/buffer-metadata-key-test.cpp b/tests/core/steam/engine/buffer-metadata-key-test.cpp index 215d64bb3..fd5d194c7 100644 --- a/tests/core/steam/engine/buffer-metadata-key-test.cpp +++ b/tests/core/steam/engine/buffer-metadata-key-test.cpp @@ -1,24 +1,15 @@ /* BufferMetadataKey(Test) - calculation of (internal) buffer metadata type keys - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file buffer-metadata-key-test.cpp ** unit test \ref BufferMetadataKey_test diff --git a/tests/core/steam/engine/buffer-metadata-test.cpp b/tests/core/steam/engine/buffer-metadata-test.cpp index 94e2de7ea..37ef34ab4 100644 --- a/tests/core/steam/engine/buffer-metadata-test.cpp +++ b/tests/core/steam/engine/buffer-metadata-test.cpp @@ -1,24 +1,15 @@ /* BufferMetadata(Test) - properties of internal data buffer metadata - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file buffer-metadata-test.cpp ** unit test \ref BufferMetadata_test diff --git a/tests/core/steam/engine/buffer-provider-protocol-test.cpp b/tests/core/steam/engine/buffer-provider-protocol-test.cpp index 5d9b825f2..f76f403de 100644 --- a/tests/core/steam/engine/buffer-provider-protocol-test.cpp +++ b/tests/core/steam/engine/buffer-provider-protocol-test.cpp @@ -1,24 +1,15 @@ /* BufferProviderProtocol(Test) - demonstration of buffer provider usage cycle - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file buffer-provider-protocol-test.cpp ** unit test \ref BufferProviderProtocol_test diff --git a/tests/core/steam/engine/calc-stream-test.cpp b/tests/core/steam/engine/calc-stream-test.cpp index d6efd2317..807a50f85 100644 --- a/tests/core/steam/engine/calc-stream-test.cpp +++ b/tests/core/steam/engine/calc-stream-test.cpp @@ -1,24 +1,15 @@ /* CalcStream(Test) - detailed coverage of engine calculation streams - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file calc-stream-test.cpp ** unit test \ref CalcStream_test diff --git a/tests/core/steam/engine/dispatcher-interface-test.cpp b/tests/core/steam/engine/dispatcher-interface-test.cpp index 312215ba6..e740ba7b8 100644 --- a/tests/core/steam/engine/dispatcher-interface-test.cpp +++ b/tests/core/steam/engine/dispatcher-interface-test.cpp @@ -1,24 +1,15 @@ /* DispatcherInterface(Test) - document and verify dispatcher for frame job creation - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dispatcher-interface-test.cpp ** unit test \ref DispatcherInterface_test diff --git a/tests/core/steam/engine/engine-interface-test.cpp b/tests/core/steam/engine/engine-interface-test.cpp index 3cd5dc8b2..c081e2b14 100644 --- a/tests/core/steam/engine/engine-interface-test.cpp +++ b/tests/core/steam/engine/engine-interface-test.cpp @@ -1,24 +1,15 @@ /* EngineInterface(Test) - verify basics of the engine (scheduling) service - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file engine-interface-test.cpp ** unit test \ref EngineInterface_test diff --git a/tests/core/steam/engine/feed-manifold-test.cpp b/tests/core/steam/engine/feed-manifold-test.cpp index 1d6720a48..dd0da88ba 100644 --- a/tests/core/steam/engine/feed-manifold-test.cpp +++ b/tests/core/steam/engine/feed-manifold-test.cpp @@ -1,24 +1,15 @@ /* FeedManifold(Test) - check consistency of buffer table chunk allocation - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file feed-manifold-test.cpp ** unit test \ref FeedManifold_test diff --git a/tests/core/steam/engine/job-hash-test.cpp b/tests/core/steam/engine/job-hash-test.cpp index e2de70a12..78487815c 100644 --- a/tests/core/steam/engine/job-hash-test.cpp +++ b/tests/core/steam/engine/job-hash-test.cpp @@ -1,24 +1,15 @@ /* JobHash(Test) - verify job definition and job identity hash - Copyright (C) Lumiera.org - 2013, Hermann Vosseler + Copyright (C) + 2013, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. -* *****************************************************/ +* *****************************************************************/ /** @file job-hash-test.cpp ** unit test \ref JobHash_test diff --git a/tests/core/steam/engine/job-planning-pipeline-test.cpp b/tests/core/steam/engine/job-planning-pipeline-test.cpp index 8c6160b3c..cae328607 100644 --- a/tests/core/steam/engine/job-planning-pipeline-test.cpp +++ b/tests/core/steam/engine/job-planning-pipeline-test.cpp @@ -1,24 +1,15 @@ /* JobPlanningPipeline(Test) - structure and setup of the job-planning pipeline - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file job-planning-pipeline-test.cpp ** unit test \ref JobPlanningPipeline_test diff --git a/tests/core/steam/engine/job-planning-test.cpp b/tests/core/steam/engine/job-planning-test.cpp index 2ec0ab1a4..e5eac9df7 100644 --- a/tests/core/steam/engine/job-planning-test.cpp +++ b/tests/core/steam/engine/job-planning-test.cpp @@ -1,24 +1,15 @@ /* JobPlanning(Test) - data evaluation for frame job creation - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file job-planning-test.cpp ** unit test \ref JobPlanning_test diff --git a/tests/core/steam/engine/mock-dispatcher.cpp b/tests/core/steam/engine/mock-dispatcher.cpp index f2e35ff76..822bd1f86 100644 --- a/tests/core/steam/engine/mock-dispatcher.cpp +++ b/tests/core/steam/engine/mock-dispatcher.cpp @@ -1,24 +1,15 @@ /* MockDispatcher - diagnostic render job and frame dispatcher - Copyright (C) Lumiera.org - 2013, Hermann Vosseler + Copyright (C) + 2013, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mock-dispatcher.cpp ** Implementation of a dummy render job for unit tests. diff --git a/tests/core/steam/engine/mock-dispatcher.hpp b/tests/core/steam/engine/mock-dispatcher.hpp index 6db6ef474..2e6602a1e 100644 --- a/tests/core/steam/engine/mock-dispatcher.hpp +++ b/tests/core/steam/engine/mock-dispatcher.hpp @@ -1,22 +1,13 @@ /* MOCK-DISPATCHER.hpp - test scaffolding to verify render job planning and dispatch - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/engine/mock-support-test.cpp b/tests/core/steam/engine/mock-support-test.cpp index 360c97e7a..aa5cf980d 100644 --- a/tests/core/steam/engine/mock-support-test.cpp +++ b/tests/core/steam/engine/mock-support-test.cpp @@ -1,24 +1,15 @@ /* MockSupport(Test) - verify test support for fixture and job dispatch - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mock-support-test.cpp ** unit test \ref MockSupport_test diff --git a/tests/core/steam/engine/node-basic-test.cpp b/tests/core/steam/engine/node-basic-test.cpp index 340a62251..7396495fd 100644 --- a/tests/core/steam/engine/node-basic-test.cpp +++ b/tests/core/steam/engine/node-basic-test.cpp @@ -1,24 +1,15 @@ /* NodeBasic(Test) - unit test covering render node basic lifecycle and usage - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file node-basic-test.cpp ** unit test \ref NodeBasic_test diff --git a/tests/core/steam/engine/node-devel-test.cpp b/tests/core/steam/engine/node-devel-test.cpp index 9d78b0efb..68c83b28c 100644 --- a/tests/core/steam/engine/node-devel-test.cpp +++ b/tests/core/steam/engine/node-devel-test.cpp @@ -1,24 +1,15 @@ /* NodeDevel(Test) - Render Node development and test support - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file node-devel-test.cpp ** unit test \ref NodeDevel_test diff --git a/tests/core/steam/engine/node-factory-test.cpp b/tests/core/steam/engine/node-factory-test.cpp index 32f77a619..00c0bb4c9 100644 --- a/tests/core/steam/engine/node-factory-test.cpp +++ b/tests/core/steam/engine/node-factory-test.cpp @@ -1,24 +1,15 @@ /* NodeFactory(Test) - building render nodes - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file node-factory-test.cpp ** unit test \ref NodeFactory_test diff --git a/tests/core/steam/engine/node-input-test.cpp b/tests/core/steam/engine/node-input-test.cpp index bee705175..32e71b3c8 100644 --- a/tests/core/steam/engine/node-input-test.cpp +++ b/tests/core/steam/engine/node-input-test.cpp @@ -1,24 +1,15 @@ /* NodeInput(Test) - unit test of the source reading render node - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file node-input-test.cpp ** unit test \ref NodeInput_test diff --git a/tests/core/steam/engine/node-linkage-test.cpp b/tests/core/steam/engine/node-linkage-test.cpp index bceb408b4..22435cb56 100644 --- a/tests/core/steam/engine/node-linkage-test.cpp +++ b/tests/core/steam/engine/node-linkage-test.cpp @@ -1,24 +1,15 @@ /* NodeLinkage(Test) - verify proper render node operation and calldown - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file node-linkage-test.cpp ** unit test \ref NodeLinkage_test diff --git a/tests/core/steam/engine/node-operation-test.cpp b/tests/core/steam/engine/node-operation-test.cpp index 78f2b48ae..4edccd876 100644 --- a/tests/core/steam/engine/node-operation-test.cpp +++ b/tests/core/steam/engine/node-operation-test.cpp @@ -1,24 +1,15 @@ /* NodeOperation(Test) - verify proper render node operation and calldown - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file node-operation-test.cpp ** unit test \ref NodeOperation_test diff --git a/tests/core/steam/engine/scheduler-interface-test.cpp b/tests/core/steam/engine/scheduler-interface-test.cpp index 745a73084..3a5c099fe 100644 --- a/tests/core/steam/engine/scheduler-interface-test.cpp +++ b/tests/core/steam/engine/scheduler-interface-test.cpp @@ -1,24 +1,15 @@ /* SchedulerInterface(Test) - verify invocation structure of the scheduler interface - Copyright (C) Lumiera.org - 2013, Hermann Vosseler + Copyright (C) + 2013, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-interface-test.cpp ** unit test \ref SchedulerInterface_test diff --git a/tests/core/steam/engine/test-rand-ontology.cpp b/tests/core/steam/engine/test-rand-ontology.cpp index 8f8dc7c27..d08b0c9d4 100644 --- a/tests/core/steam/engine/test-rand-ontology.cpp +++ b/tests/core/steam/engine/test-rand-ontology.cpp @@ -1,24 +1,15 @@ /* TestRandOntoloy - implementation of a test framework processing dummy data frames - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-rand-ontology.cpp ** Implementation of fake data processing to verify invocation logic. diff --git a/tests/core/steam/engine/test-rand-ontology.hpp b/tests/core/steam/engine/test-rand-ontology.hpp index feaaa3db0..d29b6a967 100644 --- a/tests/core/steam/engine/test-rand-ontology.hpp +++ b/tests/core/steam/engine/test-rand-ontology.hpp @@ -1,22 +1,13 @@ /* TEST-RAND-ONTOLOGY.hpp - placeholder for a domain-ontology working on dummy data frames - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/engine/testframe-test.cpp b/tests/core/steam/engine/testframe-test.cpp index 7bfead6de..e5c9de8b8 100644 --- a/tests/core/steam/engine/testframe-test.cpp +++ b/tests/core/steam/engine/testframe-test.cpp @@ -1,24 +1,15 @@ /* TestFrame(Test) - verify proper operation of dummy data frames - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file testframe-test.cpp ** unit test \ref TestFrame_test diff --git a/tests/core/steam/engine/testframe.cpp b/tests/core/steam/engine/testframe.cpp index b074fc582..6353d2317 100644 --- a/tests/core/steam/engine/testframe.cpp +++ b/tests/core/steam/engine/testframe.cpp @@ -1,24 +1,15 @@ /* TestFrame - test data frame (stub) for checking Render engine functionality - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file testframe.cpp ** Implementation of fake data frames to support unit testing diff --git a/tests/core/steam/engine/testframe.hpp b/tests/core/steam/engine/testframe.hpp index d789df9a5..56ff56301 100644 --- a/tests/core/steam/engine/testframe.hpp +++ b/tests/core/steam/engine/testframe.hpp @@ -1,22 +1,13 @@ /* TESTFRAME.hpp - test data frame (stub) for checking Render engine functionality - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/engine/timings-test.cpp b/tests/core/steam/engine/timings-test.cpp index 7db07d19f..eeeddd487 100644 --- a/tests/core/steam/engine/timings-test.cpp +++ b/tests/core/steam/engine/timings-test.cpp @@ -1,24 +1,15 @@ /* Timings(Test) - document and verify basic frame step timings - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dispatcher-interface-test.cpp ** unit test \ref Timings_test diff --git a/tests/core/steam/engine/tracking-heap-block-provider-test.cpp b/tests/core/steam/engine/tracking-heap-block-provider-test.cpp index 274f0f70b..450deff28 100644 --- a/tests/core/steam/engine/tracking-heap-block-provider-test.cpp +++ b/tests/core/steam/engine/tracking-heap-block-provider-test.cpp @@ -1,24 +1,15 @@ /* TrackingHeapBlockProvider(Test) - verify a support facility for diagnostic/test purposes - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tracking-heap-block-provider-test.cpp ** unit test \ref TrackingHeapBlockProvider_test diff --git a/tests/core/steam/fixture/fixture-change-detector-test.cpp b/tests/core/steam/fixture/fixture-change-detector-test.cpp index b2e40a144..f4d2e266b 100644 --- a/tests/core/steam/fixture/fixture-change-detector-test.cpp +++ b/tests/core/steam/fixture/fixture-change-detector-test.cpp @@ -1,24 +1,15 @@ /* FixtureChangeDetector(Test) - detecting segmentation differences - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file fixture-change-detector-test.cpp ** unit test \ref FixtureChangeDetector_test diff --git a/tests/core/steam/fixture/fixture-segment-test.cpp b/tests/core/steam/fixture/fixture-segment-test.cpp index a68353456..8cde8f4ee 100644 --- a/tests/core/steam/fixture/fixture-segment-test.cpp +++ b/tests/core/steam/fixture/fixture-segment-test.cpp @@ -1,24 +1,15 @@ /* FixtureSegment(Test) - verify properties of a single segment in the fixture - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file fixture-segment-test.cpp ** unit test \ref FixtureSegment_test diff --git a/tests/core/steam/fixture/model-port-registry-test.cpp b/tests/core/steam/fixture/model-port-registry-test.cpp index 2574d57e2..446c0ba2b 100644 --- a/tests/core/steam/fixture/model-port-registry-test.cpp +++ b/tests/core/steam/fixture/model-port-registry-test.cpp @@ -1,24 +1,15 @@ /* ModelPortRegistry(Test) - verify handling of model ports - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file model-port-registry-test.cpp ** unit test \ref ModelPortRegistry_test diff --git a/tests/core/steam/fixture/node-graph-attachment-test.cpp b/tests/core/steam/fixture/node-graph-attachment-test.cpp index 67fded65c..0b98e2b25 100644 --- a/tests/core/steam/fixture/node-graph-attachment-test.cpp +++ b/tests/core/steam/fixture/node-graph-attachment-test.cpp @@ -1,24 +1,15 @@ /* NodeGraphAttachment(Test) - verify link from fixture to low-level-model - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file node-graph-attachment-test.cpp ** unit test \ref NodeGraphAttachment_test diff --git a/tests/core/steam/fixture/segmentation-integration-test.cpp b/tests/core/steam/fixture/segmentation-integration-test.cpp index 728e613c8..01bdc2ca0 100644 --- a/tests/core/steam/fixture/segmentation-integration-test.cpp +++ b/tests/core/steam/fixture/segmentation-integration-test.cpp @@ -1,24 +1,15 @@ /* SegmentationIntegration(Test) - verify basic properties of the Segmentation - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file segmentation-integration-test.cpp ** integration test \ref SegmentationIntegration_test diff --git a/tests/core/steam/mobject/builder/build-segment-test.cpp b/tests/core/steam/mobject/builder/build-segment-test.cpp index 06c049a0a..013b91a60 100644 --- a/tests/core/steam/mobject/builder/build-segment-test.cpp +++ b/tests/core/steam/mobject/builder/build-segment-test.cpp @@ -1,24 +1,15 @@ /* BuildSegment(Test) - building the render-tree for a segment of the Timeline - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file build-segment-test.cpp ** unit test \ref BuildSegment_test diff --git a/tests/core/steam/mobject/builder/builder-tool-test.cpp b/tests/core/steam/mobject/builder/builder-tool-test.cpp index c75a6c783..e078fe10f 100644 --- a/tests/core/steam/mobject/builder/builder-tool-test.cpp +++ b/tests/core/steam/mobject/builder/builder-tool-test.cpp @@ -1,24 +1,15 @@ /* BuilderTool(Test) - specialised visitor used within the builder for processing Placements - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file builder-tool-test.cpp ** unit test \ref BuilderTool_test diff --git a/tests/core/steam/mobject/mobject-interface-test.cpp b/tests/core/steam/mobject/mobject-interface-test.cpp index 242f521fe..5c7c61214 100644 --- a/tests/core/steam/mobject/mobject-interface-test.cpp +++ b/tests/core/steam/mobject/mobject-interface-test.cpp @@ -1,24 +1,15 @@ /* MObjectInterface(Test) - covers behaviour common to all MObjects - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mobject-interface-test.cpp ** unit test \ref MObjectInterface_test diff --git a/tests/core/steam/mobject/mobject-ref-test.cpp b/tests/core/steam/mobject/mobject-ref-test.cpp index 1eb787a02..719a75292 100644 --- a/tests/core/steam/mobject/mobject-ref-test.cpp +++ b/tests/core/steam/mobject/mobject-ref-test.cpp @@ -1,24 +1,15 @@ /* MObjectRef(Test) - validating basic properties of the external MObject reference tag - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mobject-ref-test.cpp ** unit test \ref MObjectRef_test diff --git a/tests/core/steam/mobject/placement-basic-test.cpp b/tests/core/steam/mobject/placement-basic-test.cpp index 5106f439e..1c6e6bcf0 100644 --- a/tests/core/steam/mobject/placement-basic-test.cpp +++ b/tests/core/steam/mobject/placement-basic-test.cpp @@ -1,24 +1,15 @@ /* PlacementBasic(Test) - basic Placement and MObject handling - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-basic-test.cpp ** unit test \ref PlacementBasic_test diff --git a/tests/core/steam/mobject/placement-hierarchy-test.cpp b/tests/core/steam/mobject/placement-hierarchy-test.cpp index cd0e2986e..515e8c327 100644 --- a/tests/core/steam/mobject/placement-hierarchy-test.cpp +++ b/tests/core/steam/mobject/placement-hierarchy-test.cpp @@ -1,24 +1,15 @@ /* PlacementHierarchy(Test) - cooperating hierarchical placement types - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-hierarchy-test.cpp ** unit test \ref PlacementHierarchy_test diff --git a/tests/core/steam/mobject/placement-object-identity-test.cpp b/tests/core/steam/mobject/placement-object-identity-test.cpp index 346f1f553..553b6964a 100644 --- a/tests/core/steam/mobject/placement-object-identity-test.cpp +++ b/tests/core/steam/mobject/placement-object-identity-test.cpp @@ -1,24 +1,15 @@ /* PlacementObjectIdentity(Test) - object identity for placements into the session - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-object-identity-test.cpp ** unit test \ref PlacementObjectIdentity_test diff --git a/tests/core/steam/mobject/placement-ref-test.cpp b/tests/core/steam/mobject/placement-ref-test.cpp index ad9892e1a..3437f2b60 100644 --- a/tests/core/steam/mobject/placement-ref-test.cpp +++ b/tests/core/steam/mobject/placement-ref-test.cpp @@ -1,24 +1,15 @@ /* PlacementRef(Test) - generic reference to a Placement within the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-ref-test.cpp ** unit test \ref PlacementRef_test diff --git a/tests/core/steam/mobject/session/add-clip-test.cpp b/tests/core/steam/mobject/session/add-clip-test.cpp index a3787910a..359de73c9 100644 --- a/tests/core/steam/mobject/session/add-clip-test.cpp +++ b/tests/core/steam/mobject/session/add-clip-test.cpp @@ -1,24 +1,15 @@ /* AddClip(Test) - adding an Clip-MObject to the Model/Session - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file add-clip-test.cpp ** unit test \ref AddClip_test diff --git a/tests/core/steam/mobject/session/defs-manager-impl-test.cpp b/tests/core/steam/mobject/session/defs-manager-impl-test.cpp index c78a0e5b1..3dd75582c 100644 --- a/tests/core/steam/mobject/session/defs-manager-impl-test.cpp +++ b/tests/core/steam/mobject/session/defs-manager-impl-test.cpp @@ -1,24 +1,15 @@ /* DefsManagerImpl(Test) - checking implementation details of the defaults manager - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file defs-manager-impl-test.cpp ** unit test \ref DefsManagerImpl_test diff --git a/tests/core/steam/mobject/session/defs-manager-test.cpp b/tests/core/steam/mobject/session/defs-manager-test.cpp index 8481a2980..9560074ac 100644 --- a/tests/core/steam/mobject/session/defs-manager-test.cpp +++ b/tests/core/steam/mobject/session/defs-manager-test.cpp @@ -1,24 +1,15 @@ /* DefsManager(Test) - checking basic behaviour of the defaults manager - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file defs-manager-test.cpp ** unit test \ref DefsManager_test diff --git a/tests/core/steam/mobject/session/defs-registry-impl-test.cpp b/tests/core/steam/mobject/session/defs-registry-impl-test.cpp index 6a96eb50a..0c0fdc3a9 100644 --- a/tests/core/steam/mobject/session/defs-registry-impl-test.cpp +++ b/tests/core/steam/mobject/session/defs-registry-impl-test.cpp @@ -1,24 +1,15 @@ /* DefsRegistryImpl(Test) - verifying correct behaviour of the defaults registry - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file defs-registry-impl-test.cpp ** unit test \ref DefsRegistryImpl_test diff --git a/tests/core/steam/mobject/session/deletecliptest.cpp b/tests/core/steam/mobject/session/deletecliptest.cpp index f84b6af8f..0d42b0426 100644 --- a/tests/core/steam/mobject/session/deletecliptest.cpp +++ b/tests/core/steam/mobject/session/deletecliptest.cpp @@ -1,24 +1,15 @@ /* DeleteClip(Test) - removing an Clip-MObject from the Session - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file deletecliptest.cpp ** unit test \ref DeleteClip_test diff --git a/tests/core/steam/mobject/session/output-mapping-test.cpp b/tests/core/steam/mobject/session/output-mapping-test.cpp index 28b00ca6a..8da429c5f 100644 --- a/tests/core/steam/mobject/session/output-mapping-test.cpp +++ b/tests/core/steam/mobject/session/output-mapping-test.cpp @@ -1,24 +1,15 @@ /* OutputMapping(Test) - verify generic output designation mapping - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file output-mapping-test.cpp ** unit test \ref OutputMapping_test diff --git a/tests/core/steam/mobject/session/placement-index-query-test.cpp b/tests/core/steam/mobject/session/placement-index-query-test.cpp index 1d8480504..30341421e 100644 --- a/tests/core/steam/mobject/session/placement-index-query-test.cpp +++ b/tests/core/steam/mobject/session/placement-index-query-test.cpp @@ -1,24 +1,15 @@ /* PlacementIndexQuery(Test) - querying the placement index through the generic query interface - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-index-query-test.cpp ** unit test \ref PlacementIndexQuery_test diff --git a/tests/core/steam/mobject/session/placement-index-test.cpp b/tests/core/steam/mobject/session/placement-index-test.cpp index 466340a25..df1322ace 100644 --- a/tests/core/steam/mobject/session/placement-index-test.cpp +++ b/tests/core/steam/mobject/session/placement-index-test.cpp @@ -1,24 +1,15 @@ /* PlacementIndex(Test) - facility keeping track of Placements within the Session - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-index-test.cpp ** unit test \ref PlacementIndex_test diff --git a/tests/core/steam/mobject/session/placement-scope-test.cpp b/tests/core/steam/mobject/session/placement-scope-test.cpp index 776e7fa5f..727948a71 100644 --- a/tests/core/steam/mobject/session/placement-scope-test.cpp +++ b/tests/core/steam/mobject/session/placement-scope-test.cpp @@ -1,24 +1,15 @@ /* PlacementScope(Test) - accessing and navigating placement scope - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file placement-scope-test.cpp ** unit test \ref PlacementScope_test diff --git a/tests/core/steam/mobject/session/query-focus-stack-test.cpp b/tests/core/steam/mobject/session/query-focus-stack-test.cpp index 7063b844b..def5b6685 100644 --- a/tests/core/steam/mobject/session/query-focus-stack-test.cpp +++ b/tests/core/steam/mobject/session/query-focus-stack-test.cpp @@ -1,24 +1,15 @@ /* QueryFocusStack(Test) - verify the stack of focus path frames - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-focus-stack-test.cpp ** unit test \ref QueryFocusStack_test diff --git a/tests/core/steam/mobject/session/query-focus-test.cpp b/tests/core/steam/mobject/session/query-focus-test.cpp index 73d63eb15..68b712202 100644 --- a/tests/core/steam/mobject/session/query-focus-test.cpp +++ b/tests/core/steam/mobject/session/query-focus-test.cpp @@ -1,24 +1,15 @@ /* QueryFocus(Test) - verify proper management of current scope - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-focus-test.cpp ** unit test \ref QueryFocus_test diff --git a/tests/core/steam/mobject/session/query-resolver-test.cpp b/tests/core/steam/mobject/session/query-resolver-test.cpp index 0e8e29519..5f0ef822c 100644 --- a/tests/core/steam/mobject/session/query-resolver-test.cpp +++ b/tests/core/steam/mobject/session/query-resolver-test.cpp @@ -1,24 +1,15 @@ /* QueryResolver(Test) - issuing typed queries over a generic interface - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-resolver-test.cpp ** unit test \ref QueryResolver_test diff --git a/tests/core/steam/mobject/session/rebuildfixturetest.cpp b/tests/core/steam/mobject/session/rebuildfixturetest.cpp index 5f43170bf..48b7a0c33 100644 --- a/tests/core/steam/mobject/session/rebuildfixturetest.cpp +++ b/tests/core/steam/mobject/session/rebuildfixturetest.cpp @@ -1,24 +1,15 @@ /* RebuildFixture(Test) - (re)building the explicit placements - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file rebuildfixturetest.cpp ** unit test \ref RebuildFixture_test diff --git a/tests/core/steam/mobject/session/scope-path-test.cpp b/tests/core/steam/mobject/session/scope-path-test.cpp index fd127e527..14ce6022d 100644 --- a/tests/core/steam/mobject/session/scope-path-test.cpp +++ b/tests/core/steam/mobject/session/scope-path-test.cpp @@ -1,24 +1,15 @@ /* ScopePath(Test) - verify handling of logical access path down from Session root - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scope-path-test.cpp ** unit test \ref ScopePath_test diff --git a/tests/core/steam/mobject/session/scope-query-test.cpp b/tests/core/steam/mobject/session/scope-query-test.cpp index 1956d767c..d510ec941 100644 --- a/tests/core/steam/mobject/session/scope-query-test.cpp +++ b/tests/core/steam/mobject/session/scope-query-test.cpp @@ -1,24 +1,15 @@ /* ScopeQuery(Test) - running queries to discover container contents, filtering (sub)types - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scope-query-test.cpp ** unit test \ref ScopeQuery_test diff --git a/tests/core/steam/mobject/session/session-element-query-test.cpp b/tests/core/steam/mobject/session/session-element-query-test.cpp index fd86968c6..34a91a1e7 100644 --- a/tests/core/steam/mobject/session/session-element-query-test.cpp +++ b/tests/core/steam/mobject/session/session-element-query-test.cpp @@ -1,24 +1,15 @@ /* SessionElementQuery(Test) - querying and retrieving elements from the session - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-element-query-test.cpp ** unit test \ref SessionElementQuery_test diff --git a/tests/core/steam/mobject/session/session-element-tracker-test.cpp b/tests/core/steam/mobject/session/session-element-tracker-test.cpp index dceafbea0..baf29dfda 100644 --- a/tests/core/steam/mobject/session/session-element-tracker-test.cpp +++ b/tests/core/steam/mobject/session/session-element-tracker-test.cpp @@ -1,24 +1,15 @@ /* SessionElementTracker(Test) - check the facility to track and expose selected model elements - Copyright (C) Lumiera.org - 2008, 2010, Hermann Vosseler + Copyright (C) + 2008, 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-element-tracker-test.cpp ** unit test \ref SessionElementTracker_test diff --git a/tests/core/steam/mobject/session/session-manager-test.cpp b/tests/core/steam/mobject/session/session-manager-test.cpp index c23451fdd..157185605 100644 --- a/tests/core/steam/mobject/session/session-manager-test.cpp +++ b/tests/core/steam/mobject/session/session-manager-test.cpp @@ -1,24 +1,15 @@ /* SessionManager(Test) - accessing, loading and saving the Session/Model - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-manager-test.cpp ** unit test \ref SessionManager_test diff --git a/tests/core/steam/mobject/session/session-modify-parts-test.cpp b/tests/core/steam/mobject/session/session-modify-parts-test.cpp index b32ceea58..95afe67e9 100644 --- a/tests/core/steam/mobject/session/session-modify-parts-test.cpp +++ b/tests/core/steam/mobject/session/session-modify-parts-test.cpp @@ -1,24 +1,15 @@ /* SessionModifyParts(Test) - adding and removing elements, changing structure - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-modify-parts-test.cpp ** unit test \ref SessionModifyParts_test diff --git a/tests/core/steam/mobject/session/session-service-access-test.cpp b/tests/core/steam/mobject/session/session-service-access-test.cpp index 139aa526b..c8fcef95c 100644 --- a/tests/core/steam/mobject/session/session-service-access-test.cpp +++ b/tests/core/steam/mobject/session/session-service-access-test.cpp @@ -1,24 +1,15 @@ /* SessionServiceAccess(Test) - accessing implementation level session services - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-service-access-test.cpp ** unit test \ref SessionServiceAccess_test diff --git a/tests/core/steam/mobject/session/session-structure-test.cpp b/tests/core/steam/mobject/session/session-structure-test.cpp index 8c8c83f8b..ef06ea729 100644 --- a/tests/core/steam/mobject/session/session-structure-test.cpp +++ b/tests/core/steam/mobject/session/session-structure-test.cpp @@ -1,24 +1,15 @@ /* SessionStructure(Test) - verifying basic Session/Model structure - Copyright (C) Lumiera.org - 2008, 2011, Hermann Vosseler + Copyright (C) + 2008, 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file session-structure-test.cpp ** unit test \ref SessionStructure_test diff --git a/tests/core/steam/mobject/session/test-scope-invalid.hpp b/tests/core/steam/mobject/session/test-scope-invalid.hpp index 15106c618..5c794519a 100644 --- a/tests/core/steam/mobject/session/test-scope-invalid.hpp +++ b/tests/core/steam/mobject/session/test-scope-invalid.hpp @@ -1,22 +1,13 @@ /* TEST-SCOPE-INVALID.hpp - helper for placement scope and scope stack tests - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/mobject/session/test-scopes.cpp b/tests/core/steam/mobject/session/test-scopes.cpp index 01532818d..d198ff864 100644 --- a/tests/core/steam/mobject/session/test-scopes.cpp +++ b/tests/core/steam/mobject/session/test-scopes.cpp @@ -1,24 +1,15 @@ /* TEST-SCOPES.cpp - builds a test PlacementIndex containing dummy Placements as nested scopes - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-scopes.cpp ** Implementation of nested test scopes to cover the placement index. diff --git a/tests/core/steam/mobject/session/test-scopes.hpp b/tests/core/steam/mobject/session/test-scopes.hpp index 3666792a5..19d31f00b 100644 --- a/tests/core/steam/mobject/session/test-scopes.hpp +++ b/tests/core/steam/mobject/session/test-scopes.hpp @@ -1,22 +1,13 @@ /* TEST-SCOPES.hpp - builds a test PlacementIndex containing dummy Placements as nested scopes - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/mobject/session/testclip.cpp b/tests/core/steam/mobject/session/testclip.cpp index 50a94a64a..e382956a3 100644 --- a/tests/core/steam/mobject/session/testclip.cpp +++ b/tests/core/steam/mobject/session/testclip.cpp @@ -1,24 +1,15 @@ /* TestClip - test clip (stub) for checking Model/Session functionality - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file testclip.cpp ** Implementation of a stubbed clip object to support unit testing diff --git a/tests/core/steam/mobject/session/testclip.hpp b/tests/core/steam/mobject/session/testclip.hpp index 155439fdd..8cc1e4c3d 100644 --- a/tests/core/steam/mobject/session/testclip.hpp +++ b/tests/core/steam/mobject/session/testclip.hpp @@ -1,22 +1,13 @@ /* TESTCLIP.hpp - test clip (stub) for checking Model/Session functionality - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/mobject/session/testroot.hpp b/tests/core/steam/mobject/session/testroot.hpp index 313f107a4..c4ae910d7 100644 --- a/tests/core/steam/mobject/session/testroot.hpp +++ b/tests/core/steam/mobject/session/testroot.hpp @@ -1,22 +1,13 @@ /* TESTROOT.hpp - test dummy model root for checking Model/Session functionality - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/mobject/session/testsession1.hpp b/tests/core/steam/mobject/session/testsession1.hpp index 3e6afab1c..2a2234aa5 100644 --- a/tests/core/steam/mobject/session/testsession1.hpp +++ b/tests/core/steam/mobject/session/testsession1.hpp @@ -1,22 +1,13 @@ /* TESTSESSION1.hpp - complete session configuration used for various tests - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/mobject/session/timeline-sequence-handling-test.cpp b/tests/core/steam/mobject/session/timeline-sequence-handling-test.cpp index bdbee55d1..2322a8dbd 100644 --- a/tests/core/steam/mobject/session/timeline-sequence-handling-test.cpp +++ b/tests/core/steam/mobject/session/timeline-sequence-handling-test.cpp @@ -1,24 +1,15 @@ /* TimelineSequenceHandling(Test) - managing the top level session facade objects - Copyright (C) Lumiera.org - 2008, 2011, Hermann Vosseler + Copyright (C) + 2008, 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timeline-sequence-handling-test.cpp ** unit test \ref TimelineSequenceHandling_test diff --git a/tests/core/steam/play/diagnostic-output-slot.hpp b/tests/core/steam/play/diagnostic-output-slot.hpp index bfe6a40b4..0a59b4fc2 100644 --- a/tests/core/steam/play/diagnostic-output-slot.hpp +++ b/tests/core/steam/play/diagnostic-output-slot.hpp @@ -1,22 +1,13 @@ /* DIAGNOSTIC-OUTPUT-SLOT.hpp - helper for testing against the OutputSlot interface - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/play/dummy-builder-context.hpp b/tests/core/steam/play/dummy-builder-context.hpp index ff6653e60..8c9fe6e8f 100644 --- a/tests/core/steam/play/dummy-builder-context.hpp +++ b/tests/core/steam/play/dummy-builder-context.hpp @@ -1,22 +1,13 @@ /* DUMMY-BUILDER-CONTEXT.hpp - fake simulated builder result for player tests - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/play/dummy-play-connection-test.cpp b/tests/core/steam/play/dummy-play-connection-test.cpp index 12d674361..3f40c7b5c 100644 --- a/tests/core/steam/play/dummy-play-connection-test.cpp +++ b/tests/core/steam/play/dummy-play-connection-test.cpp @@ -1,24 +1,15 @@ /* DummyPlayConnection(Test) - create and verify a simplified test render engine setup - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dummy-play-connection-test.cpp ** unit test \ref DummyPlayConnection_test diff --git a/tests/core/steam/play/dummy-play-connection.cpp b/tests/core/steam/play/dummy-play-connection.cpp index d75fda100..be9e25955 100644 --- a/tests/core/steam/play/dummy-play-connection.cpp +++ b/tests/core/steam/play/dummy-play-connection.cpp @@ -1,24 +1,15 @@ /* DummyPlayConnection.hpp - simplified test setup for playback - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dummy-play-connection.cpp diff --git a/tests/core/steam/play/dummy-play-connection.hpp b/tests/core/steam/play/dummy-play-connection.hpp index b4d919190..1e1a94669 100644 --- a/tests/core/steam/play/dummy-play-connection.hpp +++ b/tests/core/steam/play/dummy-play-connection.hpp @@ -1,22 +1,13 @@ /* DUMMY-PLAY-CONNECTION.hpp - simplified test setup for playback - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/core/steam/play/output-slot-protocol-test.cpp b/tests/core/steam/play/output-slot-protocol-test.cpp index d31c61ae0..d0b20399d 100644 --- a/tests/core/steam/play/output-slot-protocol-test.cpp +++ b/tests/core/steam/play/output-slot-protocol-test.cpp @@ -1,24 +1,15 @@ /* OutputSlotProtocol(Test) - covering the basic usage cycle of an output slot - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file output-slot-protocol-test.cpp ** unit test \ref OutputSlotProtocol_test diff --git a/tests/core/steam/play/timing-constraints-test.cpp b/tests/core/steam/play/timing-constraints-test.cpp index 6e7b2fd22..f7dd98f56 100644 --- a/tests/core/steam/play/timing-constraints-test.cpp +++ b/tests/core/steam/play/timing-constraints-test.cpp @@ -1,24 +1,15 @@ /* TimingConstraints(Test) - verify timing constraint specifications - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file timing-constraints-test.cpp ** unit test \ref TimingConstraints_test diff --git a/tests/core/steam/render-segment-test.cpp b/tests/core/steam/render-segment-test.cpp index cc56aff08..feceeec49 100644 --- a/tests/core/steam/render-segment-test.cpp +++ b/tests/core/steam/render-segment-test.cpp @@ -1,24 +1,15 @@ /* RenderSegment(Test) - Steam-Layer integration test - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file render-segment-test.cpp ** unit test \ref RenderSegment_test diff --git a/tests/core/vault/media-access-mock-test.cpp b/tests/core/vault/media-access-mock-test.cpp index e6d77fa94..06c83216e 100644 --- a/tests/core/vault/media-access-mock-test.cpp +++ b/tests/core/vault/media-access-mock-test.cpp @@ -1,24 +1,15 @@ /* MediaAccessMock(Test) - checking our Test Mock replacing the MediaAccessFacade - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file media-access-mock-test.cpp ** unit test \ref MediaAccessMock_test diff --git a/tests/core/vault/media-access-mock.cpp b/tests/core/vault/media-access-mock.cpp index 3cee623b1..403231ce0 100644 --- a/tests/core/vault/media-access-mock.cpp +++ b/tests/core/vault/media-access-mock.cpp @@ -1,24 +1,15 @@ /* MediaAccessMock - a test (stub) target object for testing the factories - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file media-access-mock.cpp diff --git a/tests/core/vault/media-access-mock.hpp b/tests/core/vault/media-access-mock.hpp index b2664b436..a5067e8ba 100644 --- a/tests/core/vault/media-access-mock.hpp +++ b/tests/core/vault/media-access-mock.hpp @@ -1,22 +1,13 @@ /* MEDIA-ACCESS-MOCK.hpp - a test (stub) target object for testing the factories - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/library/advice/advice-basics-test.cpp b/tests/library/advice/advice-basics-test.cpp index 8e7704520..5688e5437 100644 --- a/tests/library/advice/advice-basics-test.cpp +++ b/tests/library/advice/advice-basics-test.cpp @@ -1,24 +1,15 @@ /* AdviceBasics(Test) - basic behaviour of the Advice collaboration - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file advice-basics-test.cpp ** unit test \ref AdviceBasics_test diff --git a/tests/library/advice/advice-binding-pattern-test.cpp b/tests/library/advice/advice-binding-pattern-test.cpp index 33a371d7f..29563399e 100644 --- a/tests/library/advice/advice-binding-pattern-test.cpp +++ b/tests/library/advice/advice-binding-pattern-test.cpp @@ -1,24 +1,15 @@ /* AdviceBindingPattern(Test) - cover pattern matching used to dispatch Advice - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file advice-binding-pattern-test.cpp ** unit test \ref AdviceBindingPattern_test diff --git a/tests/library/advice/advice-configuration-test.cpp b/tests/library/advice/advice-configuration-test.cpp index e7129d19b..41415be23 100644 --- a/tests/library/advice/advice-configuration-test.cpp +++ b/tests/library/advice/advice-configuration-test.cpp @@ -1,24 +1,15 @@ /* AdviceConfiguration(Test) - cover the various policies to configure Advice - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file advice-configuration-test.cpp ** unit test \ref AdviceConfiguration_test diff --git a/tests/library/advice/advice-index-test.cpp b/tests/library/advice/advice-index-test.cpp index 65da2eb9f..515e4f868 100644 --- a/tests/library/advice/advice-index-test.cpp +++ b/tests/library/advice/advice-index-test.cpp @@ -1,24 +1,15 @@ /* AdviceIndex(Test) - cover the index datastructure used to implement Advice dispatch - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file advice-index-test.cpp ** unit test \ref AdviceIndex_test diff --git a/tests/library/advice/advice-multiplicity-test.cpp b/tests/library/advice/advice-multiplicity-test.cpp index c92494486..2ec305ddd 100644 --- a/tests/library/advice/advice-multiplicity-test.cpp +++ b/tests/library/advice/advice-multiplicity-test.cpp @@ -1,24 +1,15 @@ /* AdviceMultiplicity(Test) - verify correctness when dispatching multiple Advices concurrently - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file advice-multiplicity-test.cpp ** unit test \ref AdviceMultiplicity_test diff --git a/tests/library/advice/advice-situations-test.cpp b/tests/library/advice/advice-situations-test.cpp index 379eb74ea..9e18f6198 100644 --- a/tests/library/advice/advice-situations-test.cpp +++ b/tests/library/advice/advice-situations-test.cpp @@ -1,24 +1,15 @@ /* AdviceSituations(Test) - catalogue of standard Advice usage scenarios - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file advice-situations-test.cpp ** unit test \ref AdviceSituations_test diff --git a/tests/library/allocation-cluster-test.cpp b/tests/library/allocation-cluster-test.cpp index b5092d3dd..ecff23fbb 100644 --- a/tests/library/allocation-cluster-test.cpp +++ b/tests/library/allocation-cluster-test.cpp @@ -1,24 +1,15 @@ /* AllocationCluster(Test) - verify bulk (de)allocating a family of objects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file allocation-cluster-test.cpp ** unit test \ref AllocationCluster_test diff --git a/tests/library/app-config-test.cpp b/tests/library/app-config-test.cpp index 6f4c78b02..d8d254d60 100644 --- a/tests/library/app-config-test.cpp +++ b/tests/library/app-config-test.cpp @@ -1,24 +1,15 @@ /* Appconfig(Test) - accessing the always-available AppState singleton - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file app-config-test.cpp ** unit test \ref Appconfig_test diff --git a/tests/library/builder-qualifier-support-test.cpp b/tests/library/builder-qualifier-support-test.cpp index 080588e9b..16da3898e 100644 --- a/tests/library/builder-qualifier-support-test.cpp +++ b/tests/library/builder-qualifier-support-test.cpp @@ -1,24 +1,15 @@ /* BuilderQualifierSupport(Test) - demonstrate accepting arbitrary qualifier terms on a builder function - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file builder-qualifier-support-test.cpp ** unit test \ref lib::test::BuilderQualifierSupport_test diff --git a/tests/library/c-lib/test-errorstate.c b/tests/library/c-lib/test-errorstate.c index 16e83af11..1c79fe54e 100644 --- a/tests/library/c-lib/test-errorstate.c +++ b/tests/library/c-lib/test-errorstate.c @@ -1,24 +1,15 @@ /* TEST-ERRORSTATE - test handling of error flags - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-errorstate.c ** C unit test to cover basic error handling in C code diff --git a/tests/library/c-lib/test-llist.c b/tests/library/c-lib/test-llist.c index e97af241f..99478f8b5 100644 --- a/tests/library/c-lib/test-llist.c +++ b/tests/library/c-lib/test-llist.c @@ -1,24 +1,15 @@ /* TEST-LLIST - test the linked list lib - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-llist.c ** C unit test to cover a linked list library implementation diff --git a/tests/library/c-lib/test-locking.c b/tests/library/c-lib/test-locking.c index f3d320c07..a5488c888 100644 --- a/tests/library/c-lib/test-locking.c +++ b/tests/library/c-lib/test-locking.c @@ -1,24 +1,15 @@ /* TEST-LOCKING - test locking functions - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-locking.c ** C unit test to cover convenience setup for POSIX locking primitives diff --git a/tests/library/c-lib/test-luid.c b/tests/library/c-lib/test-luid.c index d49ebc68c..b38235e9d 100644 --- a/tests/library/c-lib/test-luid.c +++ b/tests/library/c-lib/test-luid.c @@ -1,24 +1,15 @@ /* TEST-LUID - test the Lumiera Uniform Identifier - Copyright (C) Lumiera.org - 2007, 2008 Christian Thaeter + Copyright (C) + 2007, 2008 Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-luid.c ** C unit test to cover generation of Lumiera Uniform Identifier hashes diff --git a/tests/library/c-lib/test-psplay.c b/tests/library/c-lib/test-psplay.c index 2b2753814..c9323f7b2 100644 --- a/tests/library/c-lib/test-psplay.c +++ b/tests/library/c-lib/test-psplay.c @@ -1,24 +1,15 @@ /* TEST-PSPLAY - test the probabilistic splay tree - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-psplay.c ** C unit test to cover a probabilistic splay tree library implementation. diff --git a/tests/library/c-lib/test-safeclib.c b/tests/library/c-lib/test-safeclib.c index c0f80d10f..6d04fffb8 100644 --- a/tests/library/c-lib/test-safeclib.c +++ b/tests/library/c-lib/test-safeclib.c @@ -1,24 +1,15 @@ /* TEST-SAFECLIB - some checked C operations - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-safeclib.c ** C unit test to cover size checked C operations diff --git a/tests/library/c-lib/test-time.c b/tests/library/c-lib/test-time.c index 09f3e4589..511bdbc00 100644 --- a/tests/library/c-lib/test-time.c +++ b/tests/library/c-lib/test-time.c @@ -1,24 +1,15 @@ /* TEST-TIME - test the time conversion lib - Copyright (C) Lumiera.org + Copyright (C) 2010 Stefan Kangas - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-time.c ** C unit test to cover the basic low-level time handling operations diff --git a/tests/library/cmdline-wrapper-test.cpp b/tests/library/cmdline-wrapper-test.cpp index 0796f4518..fd2b585f1 100644 --- a/tests/library/cmdline-wrapper-test.cpp +++ b/tests/library/cmdline-wrapper-test.cpp @@ -1,24 +1,15 @@ /* CmdlineWrapper(Test) - build vector of tokens from cmdline, various conversions - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file cmdline-wrapper-test.cpp ** unit test \ref CmdlineWrapper_test diff --git a/tests/library/custom-shared-ptr-test.cpp b/tests/library/custom-shared-ptr-test.cpp index a1a3882e1..73fd1a689 100644 --- a/tests/library/custom-shared-ptr-test.cpp +++ b/tests/library/custom-shared-ptr-test.cpp @@ -1,24 +1,15 @@ /* CustomSharedPtr(Test) - ref counting, equality and comparisons - Copyright (C) Lumiera.org - 2008, 2010, Hermann Vosseler + Copyright (C) + 2008, 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file custom-shared-ptr-test.cpp ** unit test \ref CustomSharedPtr_test diff --git a/tests/library/del-stash-test.cpp b/tests/library/del-stash-test.cpp index 2457e7adc..765055f42 100644 --- a/tests/library/del-stash-test.cpp +++ b/tests/library/del-stash-test.cpp @@ -1,24 +1,15 @@ /* DelStash(Test) - verify a facility to memorise and trigger deleter functions - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file del-stash-test.cpp ** unit test \ref DelStash_test diff --git a/tests/library/diff/diff-complex-application-test.cpp b/tests/library/diff/diff-complex-application-test.cpp index e9fac5140..0158bd921 100644 --- a/tests/library/diff/diff-complex-application-test.cpp +++ b/tests/library/diff/diff-complex-application-test.cpp @@ -1,24 +1,15 @@ /* DiffComplexApplication(Test) - apply structural changes to unspecific private data structures - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff-complex-application-test.cpp ** unit test \ref DiffComplexApplication_test. diff --git a/tests/library/diff/diff-ignore-changes-test.cpp b/tests/library/diff/diff-ignore-changes-test.cpp index 542b7281d..6b6bf66f7 100644 --- a/tests/library/diff/diff-ignore-changes-test.cpp +++ b/tests/library/diff/diff-ignore-changes-test.cpp @@ -1,24 +1,15 @@ /* DiffIgnoreChanges(Test) - apply diff to black hole - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff-ignore-changes-test.cpp ** unit test \ref DiffIgnoreChanges_test. diff --git a/tests/library/diff/diff-index-table-test.cpp b/tests/library/diff/diff-index-table-test.cpp index ad9a8946c..21a7e7e98 100644 --- a/tests/library/diff/diff-index-table-test.cpp +++ b/tests/library/diff/diff-index-table-test.cpp @@ -1,24 +1,15 @@ /* DiffIndexTable(Test) - simple sequence lookup table - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff-index-table-test.cpp ** unit test \ref DiffIndexTable_test diff --git a/tests/library/diff/diff-list-application-test.cpp b/tests/library/diff/diff-list-application-test.cpp index 30f0348e7..86257b08e 100644 --- a/tests/library/diff/diff-list-application-test.cpp +++ b/tests/library/diff/diff-list-application-test.cpp @@ -1,24 +1,15 @@ /* DiffListApplication(Test) - demonstrate linearised representation of list diffs - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff-list-application-test.cpp ** unit test \ref DiffListApplication_test diff --git a/tests/library/diff/diff-list-generation-test.cpp b/tests/library/diff/diff-list-generation-test.cpp index 794f46c1f..5d6b82a97 100644 --- a/tests/library/diff/diff-list-generation-test.cpp +++ b/tests/library/diff/diff-list-generation-test.cpp @@ -1,24 +1,15 @@ /* DiffListGeneration(Test) - demonstrate list diff generation - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff-list-generation-test.cpp ** unit test \ref DiffListGeneration_test diff --git a/tests/library/diff/diff-tree-application-simple-test.cpp b/tests/library/diff/diff-tree-application-simple-test.cpp index 1f2ca9942..93e929e97 100644 --- a/tests/library/diff/diff-tree-application-simple-test.cpp +++ b/tests/library/diff/diff-tree-application-simple-test.cpp @@ -1,24 +1,15 @@ /* DiffTreeApplicationSimple(Test) - demonstrate the basics of tree diff representation - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff-tree-application-simple-test.cpp ** unit test \ref DiffTreeApplicationSimple_test. diff --git a/tests/library/diff/diff-tree-application-test.cpp b/tests/library/diff/diff-tree-application-test.cpp index 385283213..4c4089416 100644 --- a/tests/library/diff/diff-tree-application-test.cpp +++ b/tests/library/diff/diff-tree-application-test.cpp @@ -1,24 +1,15 @@ /* DiffTreeApplication(Test) - demonstrate the main features of tree diff representation - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff-tree-application-test.cpp ** unit test \ref DiffTreeApplication_test. diff --git a/tests/library/diff/diff-tree-mutation-listener-test.cpp b/tests/library/diff/diff-tree-mutation-listener-test.cpp index 9720fa84b..9c15e1d6a 100644 --- a/tests/library/diff/diff-tree-mutation-listener-test.cpp +++ b/tests/library/diff/diff-tree-mutation-listener-test.cpp @@ -1,24 +1,15 @@ /* DiffTreeMutationListener(Test) - verify notification on structural changes - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file diff-tree-mutation-listener-test.cpp ** unit test \ref DiffTreeMutationListener_test. diff --git a/tests/library/diff/gen-node-test.cpp b/tests/library/diff/gen-node-test.cpp index 2feeed313..3ae88b6c6 100644 --- a/tests/library/diff/gen-node-test.cpp +++ b/tests/library/diff/gen-node-test.cpp @@ -1,24 +1,15 @@ /* GenNode(Test) - fundamental properties of a generic tree node element - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file gen-node-test.cpp ** unit test \ref GenNode_test diff --git a/tests/library/diff/generic-record-test.cpp b/tests/library/diff/generic-record-test.cpp index 5304b793b..b4c9a1659 100644 --- a/tests/library/diff/generic-record-test.cpp +++ b/tests/library/diff/generic-record-test.cpp @@ -1,24 +1,15 @@ /* GenericRecord(Test) - introspective representation of object-like data - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file generic-record-test.cpp ** unit test \ref GenericRecord_test diff --git a/tests/library/diff/mutation-message-test.cpp b/tests/library/diff/mutation-message-test.cpp index f1a088334..d77e9b26c 100644 --- a/tests/library/diff/mutation-message-test.cpp +++ b/tests/library/diff/mutation-message-test.cpp @@ -1,24 +1,15 @@ /* MutationMessage(Test) - verify diff mutation message container - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file mutation-message-test.cpp ** unit test \ref MutationMessage_test diff --git a/tests/library/diff/tree-mutator-binding-test.cpp b/tests/library/diff/tree-mutator-binding-test.cpp index afaf521cd..c9e4ca5e3 100644 --- a/tests/library/diff/tree-mutator-binding-test.cpp +++ b/tests/library/diff/tree-mutator-binding-test.cpp @@ -1,24 +1,15 @@ /* TreeMutatorBinding(Test) - techniques to map generic changes onto concrete tree shaped data - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tree-mutator-binding-test.cpp ** unit test \ref TreeMutatorBinding_test diff --git a/tests/library/diff/tree-mutator-test.cpp b/tests/library/diff/tree-mutator-test.cpp index 5fc99bef4..64a82ccec 100644 --- a/tests/library/diff/tree-mutator-test.cpp +++ b/tests/library/diff/tree-mutator-test.cpp @@ -1,24 +1,15 @@ /* TreeMutator(Test) - customisable intermediary to abstract tree changing operations - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tree-mutator-test.cpp ** unit test \ref TreeMutator_test diff --git a/tests/library/exception-error-test.cpp b/tests/library/exception-error-test.cpp index ab3c891e7..859c95ff9 100644 --- a/tests/library/exception-error-test.cpp +++ b/tests/library/exception-error-test.cpp @@ -1,24 +1,15 @@ /* ExceptionError(Test) - throwing and catching our exception type - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file exception-error-test.cpp ** unit test \ref ExceptionError_test diff --git a/tests/library/format-cout-test.cpp b/tests/library/format-cout-test.cpp index 85bff6d85..1c4da32d2 100644 --- a/tests/library/format-cout-test.cpp +++ b/tests/library/format-cout-test.cpp @@ -1,24 +1,15 @@ /* FormatCOUT(Test) - validate automatic string conversion in output - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file format-cout-test.cpp ** unit test \ref FormatCOUT_test diff --git a/tests/library/format-helper-test.cpp b/tests/library/format-helper-test.cpp index 1e7f41af8..b9a380cb7 100644 --- a/tests/library/format-helper-test.cpp +++ b/tests/library/format-helper-test.cpp @@ -1,24 +1,15 @@ /* FormatHelper(Test) - validate formatting and diagnostics helpers - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file format-helper-test.cpp ** unit test \ref FormatHelper_test diff --git a/tests/library/format-string-test.cpp b/tests/library/format-string-test.cpp index 99cdf7172..307b95a72 100644 --- a/tests/library/format-string-test.cpp +++ b/tests/library/format-string-test.cpp @@ -1,24 +1,15 @@ /* FormatString(Test) - validate string template formatting (printf style) - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file format-string-test.cpp ** unit test \ref FormatString_test diff --git a/tests/library/gnuplot-gen-test.cpp b/tests/library/gnuplot-gen-test.cpp index ab520de0a..74378023d 100644 --- a/tests/library/gnuplot-gen-test.cpp +++ b/tests/library/gnuplot-gen-test.cpp @@ -1,24 +1,15 @@ /* GnuplotGen(Test) - verify the minimalistic text substitution engine - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file gnuplot-gen-test.cpp ** unit test \ref GnuplotGen_test diff --git a/tests/library/hash-generator-test.cpp b/tests/library/hash-generator-test.cpp index 176e85c47..d5c77dc4c 100644 --- a/tests/library/hash-generator-test.cpp +++ b/tests/library/hash-generator-test.cpp @@ -1,24 +1,15 @@ /* HashGenerator(Test) - hash value generation details - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file hash-generator-test.cpp ** unit test \ref HashGenerator_test diff --git a/tests/library/hash-indexed-test.cpp b/tests/library/hash-indexed-test.cpp index ad84be5fe..88b9f17f3 100644 --- a/tests/library/hash-indexed-test.cpp +++ b/tests/library/hash-indexed-test.cpp @@ -1,24 +1,15 @@ /* HashIndexed(Test) - proof-of-concept test for a hash based and typed ID - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file hash-indexed-test.cpp ** unit test \ref HashIndexed_test diff --git a/tests/library/hash-standard-to-boost-bridge-test.cpp b/tests/library/hash-standard-to-boost-bridge-test.cpp index 27325e9d1..9444dc1fe 100644 --- a/tests/library/hash-standard-to-boost-bridge-test.cpp +++ b/tests/library/hash-standard-to-boost-bridge-test.cpp @@ -1,24 +1,15 @@ /* HashStandardToBoostBridge(Test) - verify a workaround to combine both systems of hash function definition - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file hash-standard-to-boost-bridge-test.cpp ** unit test \ref HashStandardToBoostBridge_test diff --git a/tests/library/helloworldtest.cpp b/tests/library/helloworldtest.cpp index 83c05384b..8efe31d5f 100644 --- a/tests/library/helloworldtest.cpp +++ b/tests/library/helloworldtest.cpp @@ -1,24 +1,15 @@ /* HelloWorld(Test) - how to use this test framework... - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file helloworldtest.cpp ** unit test \ref HelloWorld_test diff --git a/tests/library/idi/generic-id-function-test.cpp b/tests/library/idi/generic-id-function-test.cpp index 6951cddaf..3b3f239b6 100644 --- a/tests/library/idi/generic-id-function-test.cpp +++ b/tests/library/idi/generic-id-function-test.cpp @@ -1,24 +1,15 @@ /* GenericIdFunction(Test) - cover instance and type id generation - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file generic-id-function-test.cpp ** unit test \ref GenericIdFunction_test diff --git a/tests/library/incidence-count-test.cpp b/tests/library/incidence-count-test.cpp index 4c3a03560..65753593e 100644 --- a/tests/library/incidence-count-test.cpp +++ b/tests/library/incidence-count-test.cpp @@ -1,24 +1,15 @@ /* IncidenceCount(Test) - observe and evaluate concurrent activations - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file incidence-count-test.cpp ** unit test \ref IncidenceCount_test diff --git a/tests/library/index-iter-test.cpp b/tests/library/index-iter-test.cpp index 5890dfc20..04f77e10f 100644 --- a/tests/library/index-iter-test.cpp +++ b/tests/library/index-iter-test.cpp @@ -1,24 +1,15 @@ /* IndexIter(Test) - verify index access packaged as iterator handle - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-index-test.cpp ** unit test \ref IndexIter_test diff --git a/tests/library/ios-savepoint-test.cpp b/tests/library/ios-savepoint-test.cpp index 3625a9cfe..585cc2c5f 100644 --- a/tests/library/ios-savepoint-test.cpp +++ b/tests/library/ios-savepoint-test.cpp @@ -1,24 +1,15 @@ /* IosSavepoint(Test) - manipulate and restore output stream formatting - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ios-savepoint-test.cpp ** unit test \ref IosSavepoint_test diff --git a/tests/library/item-wrapper-test.cpp b/tests/library/item-wrapper-test.cpp index 57ddf03e7..85bb2a82d 100644 --- a/tests/library/item-wrapper-test.cpp +++ b/tests/library/item-wrapper-test.cpp @@ -1,24 +1,15 @@ /* ItemWrapper(Test) - wrapping and holding arbitrary values, pointers and references - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file item-wrapper-test.cpp ** unit test \ref ItemWrapper_test diff --git a/tests/library/iter-adapter-stl-test.cpp b/tests/library/iter-adapter-stl-test.cpp index e91c4720a..7b2f9f18d 100644 --- a/tests/library/iter-adapter-stl-test.cpp +++ b/tests/library/iter-adapter-stl-test.cpp @@ -1,24 +1,15 @@ /* IterAdapterSTL(Test) - building various custom iterators for a given container - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-adapter-stl-test.cpp ** unit test \ref IterAdapterSTL_test diff --git a/tests/library/iter-adapter-test.cpp b/tests/library/iter-adapter-test.cpp index 1ccf08b97..5fa62cebc 100644 --- a/tests/library/iter-adapter-test.cpp +++ b/tests/library/iter-adapter-test.cpp @@ -1,24 +1,15 @@ /* IterAdapter(Test) - building various custom iterators for a given container - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-adapter-test.cpp ** unit test \ref IterAdapter_test diff --git a/tests/library/iter-chain-search-test.cpp b/tests/library/iter-chain-search-test.cpp index a79faa1c9..04414a60e 100644 --- a/tests/library/iter-chain-search-test.cpp +++ b/tests/library/iter-chain-search-test.cpp @@ -1,24 +1,15 @@ /* IterChainSearch(Test) - verify chained search operations with backtracking - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-chain-search-test.cpp ** unit test \ref IterChainSearch_test diff --git a/tests/library/iter-cursor-test.cpp b/tests/library/iter-cursor-test.cpp index 7f95dbdee..a9f606a3f 100644 --- a/tests/library/iter-cursor-test.cpp +++ b/tests/library/iter-cursor-test.cpp @@ -1,24 +1,15 @@ /* IterCursor(Test) - verify operation of a iterator based navigation cursor - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-cursor-test.cpp ** unit test \ref IterCursor_test diff --git a/tests/library/iter-explorer-test.cpp b/tests/library/iter-explorer-test.cpp index 9bb11a507..d2d89babe 100644 --- a/tests/library/iter-explorer-test.cpp +++ b/tests/library/iter-explorer-test.cpp @@ -1,24 +1,15 @@ /* IterExplorer(Test) - verify tree expanding and backtracking iterator - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-explorer-test.cpp ** The \ref IterExplorer_test covers and demonstrates a generic mechanism diff --git a/tests/library/iter-queue-test.cpp b/tests/library/iter-queue-test.cpp index 1b6167792..b96142b57 100644 --- a/tests/library/iter-queue-test.cpp +++ b/tests/library/iter-queue-test.cpp @@ -1,24 +1,15 @@ /* IterQueue(Test) - verify queue-like iterator and builder function - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-queue-test.cpp ** unit test \ref IterQueue_test diff --git a/tests/library/iter-source-test.cpp b/tests/library/iter-source-test.cpp index 1a392c7a0..328f4a4ba 100644 --- a/tests/library/iter-source-test.cpp +++ b/tests/library/iter-source-test.cpp @@ -1,24 +1,15 @@ /* IterSource(Test) - how to build an opaque iterator-based data source - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-source-test.cpp ** unit test \ref IterSource_test diff --git a/tests/library/iter-stack-test.cpp b/tests/library/iter-stack-test.cpp index 8b7ebdd36..ef49fe5cd 100644 --- a/tests/library/iter-stack-test.cpp +++ b/tests/library/iter-stack-test.cpp @@ -1,24 +1,15 @@ /* IterStack(Test) - verify stack-like iterator - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iter-stack-test.cpp ** unit test \ref IterStack_test diff --git a/tests/library/itertools-test.cpp b/tests/library/itertools-test.cpp index 49550f3e5..5cbb35adb 100644 --- a/tests/library/itertools-test.cpp +++ b/tests/library/itertools-test.cpp @@ -1,24 +1,15 @@ /* IterTools(Test) - building combined and filtering iterators based on the Iterator tools - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file itertools-test.cpp ** unit test \ref IterTools_test diff --git a/tests/library/lazy-init-test.cpp b/tests/library/lazy-init-test.cpp index 87bb901a7..16c2b4dc8 100644 --- a/tests/library/lazy-init-test.cpp +++ b/tests/library/lazy-init-test.cpp @@ -1,24 +1,15 @@ /* LazyInit(Test) - verify a mechanism to install a self-initialising functor - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file lazy-init-test.cpp ** unit test \ref LazyInit_test diff --git a/tests/library/life-cycle-test.cpp b/tests/library/life-cycle-test.cpp index 91b101900..df3dff347 100644 --- a/tests/library/life-cycle-test.cpp +++ b/tests/library/life-cycle-test.cpp @@ -1,24 +1,15 @@ /* LifeCycle(Test) - checking the lifecycle callback hooks provided by AppState - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file life-cycle-test.cpp ** unit test \ref LifeCycle_test diff --git a/tests/library/linked-elements-test.cpp b/tests/library/linked-elements-test.cpp index 13e61007e..8c8235cd6 100644 --- a/tests/library/linked-elements-test.cpp +++ b/tests/library/linked-elements-test.cpp @@ -1,24 +1,15 @@ /* LinkedElements(Test) - verify the intrusive single linked list template - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file linked-elements-test.cpp ** unit test \ref LinkedElements_test diff --git a/tests/library/meta/access-casted-test.cpp b/tests/library/meta/access-casted-test.cpp index 2bcace212..6e868b246 100644 --- a/tests/library/meta/access-casted-test.cpp +++ b/tests/library/meta/access-casted-test.cpp @@ -1,24 +1,15 @@ /* AccessCasted(Test) - verify helper to cast or convert as appropriate - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file access-casted-test.cpp ** unit test \ref AccessCasted_test diff --git a/tests/library/meta/config-flags-test.cpp b/tests/library/meta/config-flags-test.cpp index 6d9569e16..2c759a759 100644 --- a/tests/library/meta/config-flags-test.cpp +++ b/tests/library/meta/config-flags-test.cpp @@ -1,24 +1,15 @@ /* ConfigFlags(Test) - generating a configuration type defined by flags - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file config-flags-test.cpp diff --git a/tests/library/meta/duck-detector-extension-test.cpp b/tests/library/meta/duck-detector-extension-test.cpp index 81365dfec..dc1861a6e 100644 --- a/tests/library/meta/duck-detector-extension-test.cpp +++ b/tests/library/meta/duck-detector-extension-test.cpp @@ -1,24 +1,15 @@ /* DuckDetectorExtension(Test) - detecting support for extension points at compile time - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file duck-detector-extension-test.cpp ** unit test \ref DuckDetectorExtension_test diff --git a/tests/library/meta/duck-detector-test.cpp b/tests/library/meta/duck-detector-test.cpp index b392be783..7079ae491 100644 --- a/tests/library/meta/duck-detector-test.cpp +++ b/tests/library/meta/duck-detector-test.cpp @@ -1,24 +1,15 @@ /* DuckDetector(Test) - detecting properties of a type at compile time - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file duck-detector-test.cpp ** unit test \ref DuckDetector_test: diff --git a/tests/library/meta/dummy-functions.hpp b/tests/library/meta/dummy-functions.hpp index 0b776236e..47a008abd 100644 --- a/tests/library/meta/dummy-functions.hpp +++ b/tests/library/meta/dummy-functions.hpp @@ -1,24 +1,15 @@ /* DUMMY-FUNCTIONS - mock functions for checking functor utils - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file dummy-functions.hpp ** dummy functions to support unit testing of function metaprogramming helpers diff --git a/tests/library/meta/function-closure-test.cpp b/tests/library/meta/function-closure-test.cpp index 2b4bedb32..b95357976 100644 --- a/tests/library/meta/function-closure-test.cpp +++ b/tests/library/meta/function-closure-test.cpp @@ -1,24 +1,15 @@ /* FunctionClosure(Test) - appending, mixing and filtering typelists - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file function-closure-test.cpp diff --git a/tests/library/meta/function-composition-test.cpp b/tests/library/meta/function-composition-test.cpp index e1a3ebbb2..335747057 100644 --- a/tests/library/meta/function-composition-test.cpp +++ b/tests/library/meta/function-composition-test.cpp @@ -1,24 +1,15 @@ /* FunctionComposition(Test) - functional composition and partial application - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file function-composition-test.cpp ** unit test \ref FunctionComposition_test diff --git a/tests/library/meta/function-erasure-test.cpp b/tests/library/meta/function-erasure-test.cpp index 60dfeb7f5..9d3563730 100644 --- a/tests/library/meta/function-erasure-test.cpp +++ b/tests/library/meta/function-erasure-test.cpp @@ -1,24 +1,15 @@ /* FunctionErasure(Test) - verify the wrapping of functor object with type erasure - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file function-erasure-test.cpp ** unit test \ref FunctionErasure_test diff --git a/tests/library/meta/function-signature-test.cpp b/tests/library/meta/function-signature-test.cpp index afee8756c..fea1b2180 100644 --- a/tests/library/meta/function-signature-test.cpp +++ b/tests/library/meta/function-signature-test.cpp @@ -1,24 +1,15 @@ /* FunctionSignature(Test) - metaprogramming to extract function signature type - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file function-signature-test.cpp ** unit test \ref FunctionSignature_test diff --git a/tests/library/meta/generator-combinations-test.cpp b/tests/library/meta/generator-combinations-test.cpp index 8ce8b7f43..17b09d901 100644 --- a/tests/library/meta/generator-combinations-test.cpp +++ b/tests/library/meta/generator-combinations-test.cpp @@ -1,24 +1,15 @@ /* GeneratorCombinations(Test) - verify generating case combinations - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file generator-combinations-test.cpp ** unit test \ref GeneratorCombinations_test diff --git a/tests/library/meta/generator-test.cpp b/tests/library/meta/generator-test.cpp index 4ca10e8b9..ed2777460 100644 --- a/tests/library/meta/generator-test.cpp +++ b/tests/library/meta/generator-test.cpp @@ -1,24 +1,15 @@ /* Generator(Test) - build an interface + implementation directed by a typelis - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file generator-test.cpp diff --git a/tests/library/meta/iterable-classification-test.cpp b/tests/library/meta/iterable-classification-test.cpp index ccfa1185b..b18117489 100644 --- a/tests/library/meta/iterable-classification-test.cpp +++ b/tests/library/meta/iterable-classification-test.cpp @@ -1,24 +1,15 @@ /* IterableClassification(Test) - detecting iterability of a generic type - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file iterable-classification-test.cpp ** unit test \ref IterableClassification_test diff --git a/tests/library/meta/late-bind-instance-test.cpp b/tests/library/meta/late-bind-instance-test.cpp index dd9e354bd..286896482 100644 --- a/tests/library/meta/late-bind-instance-test.cpp +++ b/tests/library/meta/late-bind-instance-test.cpp @@ -1,24 +1,15 @@ /* LateBindInstance(Test) - verify rewriting of member function invocation - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file late-bind-instance-test.cpp ** unit test \ref LateBindInstance_test diff --git a/tests/library/meta/meta-utils-test.cpp b/tests/library/meta/meta-utils-test.cpp index ca5946b56..016322be7 100644 --- a/tests/library/meta/meta-utils-test.cpp +++ b/tests/library/meta/meta-utils-test.cpp @@ -1,24 +1,15 @@ /* MetaUtils(Test) - check some simple type trait helpers - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file meta-utils-test.cpp ** unit test \ref MetaUtils_test diff --git a/tests/library/meta/tuple-diagnostics.hpp b/tests/library/meta/tuple-diagnostics.hpp index 7f123a848..fc1b05e08 100644 --- a/tests/library/meta/tuple-diagnostics.hpp +++ b/tests/library/meta/tuple-diagnostics.hpp @@ -1,24 +1,15 @@ /* TUPLE-DIAGNOSTICS - helper for diagnostics of type tuples - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tuple-diagnostics.hpp diff --git a/tests/library/meta/tuple-helper-test.cpp b/tests/library/meta/tuple-helper-test.cpp index 790ff757b..4cc77e324 100644 --- a/tests/library/meta/tuple-helper-test.cpp +++ b/tests/library/meta/tuple-helper-test.cpp @@ -1,24 +1,15 @@ /* TupleHelper(Test) - verify helpers for working with tuples and type sequences - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tuple-helper-test.cpp diff --git a/tests/library/meta/tuple-record-init-test.cpp b/tests/library/meta/tuple-record-init-test.cpp index c8753d291..134021498 100644 --- a/tests/library/meta/tuple-record-init-test.cpp +++ b/tests/library/meta/tuple-record-init-test.cpp @@ -1,24 +1,15 @@ /* TupleRecordInit(Test) - to build a tuple from a GenNode sequence - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file tuple-record-init-test.cpp ** unit test \ref TupleRecordInit_test diff --git a/tests/library/meta/type-demangling-test.cpp b/tests/library/meta/type-demangling-test.cpp index 9c0fb6d04..1cb329aa9 100644 --- a/tests/library/meta/type-demangling-test.cpp +++ b/tests/library/meta/type-demangling-test.cpp @@ -1,24 +1,15 @@ /* TypeDemangling(Test) - ensure a helper for C++ demangling works as expected - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file type-demangling-test.cpp ** unit test \ref TypeDemangling_test diff --git a/tests/library/meta/type-display-test.cpp b/tests/library/meta/type-display-test.cpp index 38e8e1e6b..226e2afe0 100644 --- a/tests/library/meta/type-display-test.cpp +++ b/tests/library/meta/type-display-test.cpp @@ -1,24 +1,15 @@ /* TypeDisplay(Test) - human readable simplified display of C++ types - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file type-display-test.cpp ** unit test \ref TypeDisplay_test diff --git a/tests/library/meta/typelist-diagnostics.hpp b/tests/library/meta/typelist-diagnostics.hpp index f5a92880a..648e87951 100644 --- a/tests/library/meta/typelist-diagnostics.hpp +++ b/tests/library/meta/typelist-diagnostics.hpp @@ -1,24 +1,15 @@ /* TYPELIST-DIAGNOSTICS - helper for testing the typelist based utilities - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typelist-diagnostics.hpp diff --git a/tests/library/meta/typelist-manip-test.cpp b/tests/library/meta/typelist-manip-test.cpp index 26a9d47fc..14bfc092a 100644 --- a/tests/library/meta/typelist-manip-test.cpp +++ b/tests/library/meta/typelist-manip-test.cpp @@ -1,24 +1,15 @@ /* TypeListManip(Test) - appending, mixing and filtering typelists - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typelist-manip-test.cpp diff --git a/tests/library/meta/typelist-test.cpp b/tests/library/meta/typelist-test.cpp index 404ad1d19..e21fa94d9 100644 --- a/tests/library/meta/typelist-test.cpp +++ b/tests/library/meta/typelist-test.cpp @@ -1,24 +1,15 @@ /* TypeList(Test) - check the typelist metaprogramming facility - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typelist-test.cpp ** unit test \ref TypeList_test diff --git a/tests/library/meta/typelist-util-test.cpp b/tests/library/meta/typelist-util-test.cpp index c7b2fee47..7c8ec0a5e 100644 --- a/tests/library/meta/typelist-util-test.cpp +++ b/tests/library/meta/typelist-util-test.cpp @@ -1,24 +1,15 @@ /* TypeListUtil(Test) - check the simple typelist metaprogramming helpers - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typelist-util-test.cpp ** unit test \ref TypeListUtil_test diff --git a/tests/library/meta/typeseq-manip-test.cpp b/tests/library/meta/typeseq-manip-test.cpp index 419ceff26..9286423bd 100644 --- a/tests/library/meta/typeseq-manip-test.cpp +++ b/tests/library/meta/typeseq-manip-test.cpp @@ -1,24 +1,15 @@ /* TypeSeqManip(Test) - simple manipulations on type sequences - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typeseq-manip-test.cpp diff --git a/tests/library/meta/value-type-binding-test.cpp b/tests/library/meta/value-type-binding-test.cpp index 61aa81b79..2a0a8a8e3 100644 --- a/tests/library/meta/value-type-binding-test.cpp +++ b/tests/library/meta/value-type-binding-test.cpp @@ -1,24 +1,15 @@ /* ValueTypeBinding(Test) - verify handling of value_type definitions on custom containers - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file type-display-test.cpp ** unit test \ref ValueTypeBinding_test diff --git a/tests/library/meta/variadic-argument-picker-test.cpp b/tests/library/meta/variadic-argument-picker-test.cpp index 221449770..87a3560bd 100644 --- a/tests/library/meta/variadic-argument-picker-test.cpp +++ b/tests/library/meta/variadic-argument-picker-test.cpp @@ -1,24 +1,15 @@ /* VariadicArgumentPicker(Test) - access individual arguments from a variadic template - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file variadic-argument-picker-test.cpp diff --git a/tests/library/meta/virtual-copy-support-test.cpp b/tests/library/meta/virtual-copy-support-test.cpp index 79e48b877..d0332800f 100644 --- a/tests/library/meta/virtual-copy-support-test.cpp +++ b/tests/library/meta/virtual-copy-support-test.cpp @@ -1,24 +1,15 @@ /* VirtualCopySupport(Test) - copy and clone type-erased objects - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file virtual-copy-support-test.cpp ** unit test \ref VirtualCopySupport_test diff --git a/tests/library/multifact-argument-test.cpp b/tests/library/multifact-argument-test.cpp index 0983feacb..ad378c100 100644 --- a/tests/library/multifact-argument-test.cpp +++ b/tests/library/multifact-argument-test.cpp @@ -1,24 +1,15 @@ /* MultiFactArgument(Test) - passing additional invocation arguments to registered factory functions - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file multifact-argument-test.cpp ** unit test \ref MultiFactArgument_test diff --git a/tests/library/multifact-singleton-test.cpp b/tests/library/multifact-singleton-test.cpp index 35a6c7d2e..cdab81ab9 100644 --- a/tests/library/multifact-singleton-test.cpp +++ b/tests/library/multifact-singleton-test.cpp @@ -1,24 +1,15 @@ /* MultiFactSingleton(Test) - using MultiFact to manage a family of singletons - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file multifact-singleton-test.cpp ** unit test \ref MultiFactSingleton_test diff --git a/tests/library/multifact-test.cpp b/tests/library/multifact-test.cpp index 66ef0c697..30b257887 100644 --- a/tests/library/multifact-test.cpp +++ b/tests/library/multifact-test.cpp @@ -1,24 +1,15 @@ /* MultiFact(Test) - cover the configurable object-family creating factory - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file multifact-test.cpp ** unit test \ref MultiFact_test diff --git a/tests/library/null-value-test.cpp b/tests/library/null-value-test.cpp index 3dc906398..2dcb6eaee 100644 --- a/tests/library/null-value-test.cpp +++ b/tests/library/null-value-test.cpp @@ -1,24 +1,15 @@ /* NullValue(Test) - verify the singleton holder for NIL or default values - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file null-value-test.cpp ** unit test \ref NullValue_test diff --git a/tests/library/opaque-holder-test.cpp b/tests/library/opaque-holder-test.cpp index 4ca4412ee..04ab98eaa 100644 --- a/tests/library/opaque-holder-test.cpp +++ b/tests/library/opaque-holder-test.cpp @@ -1,24 +1,15 @@ /* OpaqueHolder(Test) - check the inline type erasure helper - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file opaque-holder-test.cpp ** unit test \ref OpaqueHolder_test diff --git a/tests/library/opaque-unchecked-buffer-test.cpp b/tests/library/opaque-unchecked-buffer-test.cpp index cd6bfe323..4a1498533 100644 --- a/tests/library/opaque-unchecked-buffer-test.cpp +++ b/tests/library/opaque-unchecked-buffer-test.cpp @@ -1,24 +1,15 @@ /* OpaqueUncheckedBuffer(Test) - passive inline buffer test - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file opaque-unchecked-buffer-test.cpp ** unit test \ref OpaqueUncheckedBuffer_test diff --git a/tests/library/optional-ref-test.cpp b/tests/library/optional-ref-test.cpp index fa6648e2f..1600fee45 100644 --- a/tests/library/optional-ref-test.cpp +++ b/tests/library/optional-ref-test.cpp @@ -1,24 +1,15 @@ /* OptionalRef(Test) - verify an optional and switchable object link - Copyright (C) Lumiera.org - 2010, Hermann Vosseler + Copyright (C) + 2010, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file optional-ref-test.cpp ** unit test \ref OptionalRef_test diff --git a/tests/library/path-array-test.cpp b/tests/library/path-array-test.cpp index f42792c52..02e1fc2d1 100644 --- a/tests/library/path-array-test.cpp +++ b/tests/library/path-array-test.cpp @@ -1,24 +1,15 @@ /* PathArray(Test) - verify container abstraction for a sequence of path elements - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file path-array-test.cpp ** unit test \ref PathArray_test diff --git a/tests/library/polymorphic-value-test.cpp b/tests/library/polymorphic-value-test.cpp index 7d2d7579b..7f1837b50 100644 --- a/tests/library/polymorphic-value-test.cpp +++ b/tests/library/polymorphic-value-test.cpp @@ -1,24 +1,15 @@ /* PolymorphicValue(Test) - verify handling of opaque polymorphic values - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file polymorphic-value-test.cpp ** unit test \ref PolymorphicValue_test diff --git a/tests/library/query-text-test.cpp b/tests/library/query-text-test.cpp index a3af0ed71..86265ceac 100644 --- a/tests/library/query-text-test.cpp +++ b/tests/library/query-text-test.cpp @@ -1,24 +1,15 @@ /* QueryText(Test) - verify syntactical query representation - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-text-test.cpp ** unit test \ref QueryText_test diff --git a/tests/library/query/query-utils-test.cpp b/tests/library/query/query-utils-test.cpp index c513b2e5e..fa2debaf9 100644 --- a/tests/library/query/query-utils-test.cpp +++ b/tests/library/query/query-utils-test.cpp @@ -1,24 +1,15 @@ /* QueryUtils(Test) - checking various utils provided for dealing with config queries - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file query-utils-test.cpp ** unit test \ref QueryUtils_test diff --git a/tests/library/random-concurrent-test.cpp b/tests/library/random-concurrent-test.cpp index 9327d2a8f..0337458bd 100644 --- a/tests/library/random-concurrent-test.cpp +++ b/tests/library/random-concurrent-test.cpp @@ -1,24 +1,15 @@ /* RandomConcurrent(Test) - investigate concurrent random number generation - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file random-concurrent-test.cpp ** unit test \ref RandomConcurrent_test diff --git a/tests/library/random-draw-test.cpp b/tests/library/random-draw-test.cpp index 4ed7d37b0..88e1832f9 100644 --- a/tests/library/random-draw-test.cpp +++ b/tests/library/random-draw-test.cpp @@ -1,24 +1,15 @@ /* RandomDraw(Test) - verify the component builder for random selected values - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file random-draw-test.cpp ** unit test \ref RandomDraw_test diff --git a/tests/library/random-test.cpp b/tests/library/random-test.cpp index f8c76e158..8c7db9742 100644 --- a/tests/library/random-test.cpp +++ b/tests/library/random-test.cpp @@ -1,24 +1,15 @@ /* Random(Test) - verify framework for controlled random number generation - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file random-test.cpp ** unit test \ref Random_test diff --git a/tests/library/rational-test.cpp b/tests/library/rational-test.cpp index f3d80a5c3..dbb4cd8c0 100644 --- a/tests/library/rational-test.cpp +++ b/tests/library/rational-test.cpp @@ -1,24 +1,15 @@ /* Rational(Test) - verify support for rational arithmetics - Copyright (C) Lumiera.org - 2022, Hermann Vosseler + Copyright (C) + 2022, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file rational-test.cpp ** unit test \ref Rational_test diff --git a/tests/library/ref-array-test.cpp b/tests/library/ref-array-test.cpp index a4169c450..db7472e12 100644 --- a/tests/library/ref-array-test.cpp +++ b/tests/library/ref-array-test.cpp @@ -1,24 +1,15 @@ /* RefArray(Test) - unittest for wrapping with array-of-refs access - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ref-array-test.cpp ** unit test \ref RefArray_test diff --git a/tests/library/removefromsettest.cpp b/tests/library/removefromsettest.cpp index 7044ce3ad..a2ae502e9 100644 --- a/tests/library/removefromsettest.cpp +++ b/tests/library/removefromsettest.cpp @@ -1,24 +1,15 @@ /* RemoveFromSet(Test) - algorithm removing predicated elements from set - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file removefromsettest.cpp ** unit test \ref RemoveFromSet_test diff --git a/tests/library/replaceable-item-test.cpp b/tests/library/replaceable-item-test.cpp index 3c80b2136..b361fa2ae 100644 --- a/tests/library/replaceable-item-test.cpp +++ b/tests/library/replaceable-item-test.cpp @@ -1,24 +1,15 @@ /* ReplaceableItem(Test) - adapter to take snapshot from non-assignable values - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ diff --git a/tests/library/result-test.cpp b/tests/library/result-test.cpp index 0cf593ec8..d63148f20 100644 --- a/tests/library/result-test.cpp +++ b/tests/library/result-test.cpp @@ -1,24 +1,15 @@ /* Result(Test) - verify the either-result-or-failure intermediary wrapper - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file result-test.cpp ** unit test \ref Result_test diff --git a/tests/library/scoped-collection-test.cpp b/tests/library/scoped-collection-test.cpp index 3dcaff1fa..b3126e182 100644 --- a/tests/library/scoped-collection-test.cpp +++ b/tests/library/scoped-collection-test.cpp @@ -1,24 +1,15 @@ /* ScopedCollection(Test) - holding and owning a fixed collection of noncopyable objects - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scoped-collection-test.cpp ** unit test \ref ScopedCollection_test diff --git a/tests/library/scoped-holder-test.cpp b/tests/library/scoped-holder-test.cpp index 7e8b77639..12e400128 100644 --- a/tests/library/scoped-holder-test.cpp +++ b/tests/library/scoped-holder-test.cpp @@ -1,24 +1,15 @@ /* ScopedHolder(Test) - holding and owning noncopyable objects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scoped-holder-test.cpp ** unit test \ref ScopedHolder_test diff --git a/tests/library/scoped-holder-transfer-test.cpp b/tests/library/scoped-holder-transfer-test.cpp index eeec33a43..b2c3b11c9 100644 --- a/tests/library/scoped-holder-transfer-test.cpp +++ b/tests/library/scoped-holder-transfer-test.cpp @@ -1,24 +1,15 @@ /* ScopedHolderTransfer(Test) - managing noncopyable objects within a growing vector - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scoped-holder-transfer-test.cpp ** unit test \ref ScopedHolderTransfer_test diff --git a/tests/library/scoped-ptrvect-test.cpp b/tests/library/scoped-ptrvect-test.cpp index eff9fde74..0e054c2f1 100644 --- a/tests/library/scoped-ptrvect-test.cpp +++ b/tests/library/scoped-ptrvect-test.cpp @@ -1,24 +1,15 @@ /* ScopedPtrVect(Test) - holding and owning a collection of noncopyable objects - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scoped-ptrvect-test.cpp ** unit test \ref ScopedPtrVect_test diff --git a/tests/library/search-path-splitter-test.cpp b/tests/library/search-path-splitter-test.cpp index 4dedad651..fc19a5be3 100644 --- a/tests/library/search-path-splitter-test.cpp +++ b/tests/library/search-path-splitter-test.cpp @@ -1,24 +1,15 @@ /* SearchPathSplitter(Test) - iterating a search path specification - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file search-path-splitter-test.cpp ** unit test \ref SearchPathSplitter_test diff --git a/tests/library/several-builder-test.cpp b/tests/library/several-builder-test.cpp index efdac60c9..2ee0bc1a7 100644 --- a/tests/library/several-builder-test.cpp +++ b/tests/library/several-builder-test.cpp @@ -1,25 +1,16 @@ /* SeveralBuilder(Test) - building a limited fixed collection of elements - Copyright (C) Lumiera.org - 2008, Hermann Vosseler - 2024, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file several-builder-test.cpp ** unit test \ref SeveralBuilder_test diff --git a/tests/library/simple-allocator-test.cpp b/tests/library/simple-allocator-test.cpp index 31b84fec6..8a74283ef 100644 --- a/tests/library/simple-allocator-test.cpp +++ b/tests/library/simple-allocator-test.cpp @@ -1,24 +1,15 @@ /* SimpleAllocator(Test) - check interface for simple custom allocations - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file simple-allocator-test.cpp ** unit test \ref SimpleAllocator_test diff --git a/tests/library/split-splice-test.cpp b/tests/library/split-splice-test.cpp index f98321bcc..fa0336aa8 100644 --- a/tests/library/split-splice-test.cpp +++ b/tests/library/split-splice-test.cpp @@ -1,24 +1,15 @@ /* SplitSplice(Test) - verify interval splicing - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file split-splice-test.cpp ** unit test \ref SplitSplice_test diff --git a/tests/library/stat/data-csv-test.cpp b/tests/library/stat/data-csv-test.cpp index eb869c3d4..09fb5f8bc 100644 --- a/tests/library/stat/data-csv-test.cpp +++ b/tests/library/stat/data-csv-test.cpp @@ -1,24 +1,15 @@ /* DataCSV(Test) - verify data table with CSV storage support - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file data-csv-test.cpp ** unit test \ref DataCSV_test diff --git a/tests/library/stat/file-support-test.cpp b/tests/library/stat/file-support-test.cpp index 987cb0c02..ddf0ee7ad 100644 --- a/tests/library/stat/file-support-test.cpp +++ b/tests/library/stat/file-support-test.cpp @@ -1,24 +1,15 @@ /* FileSupport(Test) - verify additional filesystem helpers - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file file-support-test.cpp ** unit test \ref FileSupport_test diff --git a/tests/library/stat/statistic-test.cpp b/tests/library/stat/statistic-test.cpp index 96371399f..2490f2d51 100644 --- a/tests/library/stat/statistic-test.cpp +++ b/tests/library/stat/statistic-test.cpp @@ -1,24 +1,15 @@ /* Statistic(Test) - validate simple statistic calculations - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file statistic-test.cpp ** unit test \ref Statistic_test diff --git a/tests/library/sub-id-test.cpp b/tests/library/sub-id-test.cpp index 7e773767e..54a5c63d2 100644 --- a/tests/library/sub-id-test.cpp +++ b/tests/library/sub-id-test.cpp @@ -1,24 +1,15 @@ /* SubID(Test) - exploring possible properties of an extensible symbolic identifier - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sub-id-test.cpp ** unit test \ref SubID_test diff --git a/tests/library/symbol-hashtable-test.cpp b/tests/library/symbol-hashtable-test.cpp index 8f1723133..49e2a8aa5 100644 --- a/tests/library/symbol-hashtable-test.cpp +++ b/tests/library/symbol-hashtable-test.cpp @@ -1,24 +1,15 @@ /* SymbolHashtable(Test) - building a hashtable with Symbol (id) keys - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file symbol-hashtable-test.cpp ** unit test \ref SymbolHashtable_test diff --git a/tests/library/symbol-test.cpp b/tests/library/symbol-test.cpp index 27e9e1fcd..c68b84ab9 100644 --- a/tests/library/symbol-test.cpp +++ b/tests/library/symbol-test.cpp @@ -1,24 +1,15 @@ /* Symbol(Test) - verify basic properties of a Symbol datatype - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file symbol-test.cpp ** unit test \ref Symbol_test diff --git a/tests/library/sync-barrier-performance-test.cpp b/tests/library/sync-barrier-performance-test.cpp index 1d3bab1af..fbbbf554d 100644 --- a/tests/library/sync-barrier-performance-test.cpp +++ b/tests/library/sync-barrier-performance-test.cpp @@ -1,24 +1,15 @@ /* SyncBarrierPerformance(Test) - investigate performance of yield-waiting synchronisation - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sync-barrier-performance-test.cpp ** Assess the performance characteristics of lib::SyncBarrier diff --git a/tests/library/sync-barrier-test.cpp b/tests/library/sync-barrier-test.cpp index 85cd9e268..8e6c4cf11 100644 --- a/tests/library/sync-barrier-test.cpp +++ b/tests/library/sync-barrier-test.cpp @@ -1,24 +1,15 @@ /* SyncBarrier(Test) - verify yield-waiting synchronisation latch - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sync-barrier-test.cpp ** unit test \ref SyncBarrier_test diff --git a/tests/library/sync-classlock-test.cpp b/tests/library/sync-classlock-test.cpp index 0e0997078..b1aaef50d 100644 --- a/tests/library/sync-classlock-test.cpp +++ b/tests/library/sync-classlock-test.cpp @@ -1,24 +1,15 @@ /* SyncClasslock(Test) - validate the type-based Monitor locking - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sync-classlock-test.cpp ** unit test \ref SyncClasslock_test diff --git a/tests/library/sync-locking-test.cpp b/tests/library/sync-locking-test.cpp index eb8908e66..f5ddbfcd8 100644 --- a/tests/library/sync-locking-test.cpp +++ b/tests/library/sync-locking-test.cpp @@ -1,24 +1,15 @@ /* SyncLocking(Test) - check the monitor object based locking - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sync-locking-test.cpp ** unit test \ref SyncLocking_test diff --git a/tests/library/sync-timedwait-test.cpp b/tests/library/sync-timedwait-test.cpp index 855cde75d..602efb4b6 100644 --- a/tests/library/sync-timedwait-test.cpp +++ b/tests/library/sync-timedwait-test.cpp @@ -1,24 +1,15 @@ /* SyncTimedwait(Test) - check the monitor object based timed condition wait - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sync-timedwait-test.cpp ** unit test \ref SyncTimedwait_test diff --git a/tests/library/sync-waiting-test.cpp b/tests/library/sync-waiting-test.cpp index 0d66b1a22..5b875ce95 100644 --- a/tests/library/sync-waiting-test.cpp +++ b/tests/library/sync-waiting-test.cpp @@ -1,24 +1,15 @@ /* SyncWaiting(Test) - check the monitor object based wait/notification - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file sync-waiting-test.cpp ** unit test \ref SyncWaiting_test diff --git a/tests/library/test/event-log-test.cpp b/tests/library/test/event-log-test.cpp index aeb36bce1..e01bead27 100644 --- a/tests/library/test/event-log-test.cpp +++ b/tests/library/test/event-log-test.cpp @@ -1,24 +1,15 @@ /* EventLog(Test) - helper for event registration and verification - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file event-log-test.cpp ** unit test \ref EventLog_test diff --git a/tests/library/test/temp-dir-test.cpp b/tests/library/test/temp-dir-test.cpp index 9d46b76fc..9998eb499 100644 --- a/tests/library/test/temp-dir-test.cpp +++ b/tests/library/test/temp-dir-test.cpp @@ -1,24 +1,15 @@ /* TempDir(Test) - verify automated temporary working directory - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file temp-dir-test.cpp ** unit test \ref TempDir_test diff --git a/tests/library/test/test-helper-test.cpp b/tests/library/test/test-helper-test.cpp index 3c04fe3af..289992343 100644 --- a/tests/library/test/test-helper-test.cpp +++ b/tests/library/test/test-helper-test.cpp @@ -1,24 +1,15 @@ /* TestHelper(Test) - validate the unittest support functions - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-helper-test.cpp ** unit test \ref TestHelper_test diff --git a/tests/library/test/test-helper-variadic-test.cpp b/tests/library/test/test-helper-variadic-test.cpp index 0a83af6ea..ca0b61110 100644 --- a/tests/library/test/test-helper-variadic-test.cpp +++ b/tests/library/test/test-helper-variadic-test.cpp @@ -1,24 +1,15 @@ /* TestHelperVariadic(Test) - verify variadic template diagnostics helper - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-helper-variadic-test.cpp ** unit test \ref TestHelperVariadic_test diff --git a/tests/library/test/test-option-test.cpp b/tests/library/test/test-option-test.cpp index 0518e4e35..026fd808e 100644 --- a/tests/library/test/test-option-test.cpp +++ b/tests/library/test/test-option-test.cpp @@ -1,24 +1,15 @@ /* TestOption(Test) - parsing of cmd line options for running Testcases - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-option-test.cpp ** unit test \ref TestOption_test diff --git a/tests/library/test/test-tracking-test.cpp b/tests/library/test/test-tracking-test.cpp index 9dd058454..a1fcf92d5 100644 --- a/tests/library/test/test-tracking-test.cpp +++ b/tests/library/test/test-tracking-test.cpp @@ -1,24 +1,15 @@ /* TestTracking(Test) - demonstrate test helpers for tracking automated clean-up - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-tracking-test.cpp ** unit test \ref TestTracking_test diff --git a/tests/library/text-template-test.cpp b/tests/library/text-template-test.cpp index 9484d8671..ea3fd7543 100644 --- a/tests/library/text-template-test.cpp +++ b/tests/library/text-template-test.cpp @@ -1,24 +1,15 @@ /* TextTemplate(Test) - verify the minimalistic text substitution engine - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file text-template-test.cpp ** unit test \ref TextTemplate_test diff --git a/tests/library/thread-wrapper-autonomous-test.cpp b/tests/library/thread-wrapper-autonomous-test.cpp index 8ce8fb4ed..9803fcc64 100644 --- a/tests/library/thread-wrapper-autonomous-test.cpp +++ b/tests/library/thread-wrapper-autonomous-test.cpp @@ -1,24 +1,15 @@ /* ThreadWrapperAutonomous(Test) - launching a self-contained and completely detached thread - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file thread-wrapper-autonomous-test.cpp ** unit test \ref ThreadWrapperAutonomous_test diff --git a/tests/library/thread-wrapper-join-test.cpp b/tests/library/thread-wrapper-join-test.cpp index 4d59a0e04..cea5681e9 100644 --- a/tests/library/thread-wrapper-join-test.cpp +++ b/tests/library/thread-wrapper-join-test.cpp @@ -1,24 +1,15 @@ /* ThreadWrapperJoin(Test) - wait blocking on termination of a thread - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file thread-wrapper-join-test.cpp ** unit test \ref ThreadWrapperJoin_test diff --git a/tests/library/thread-wrapper-lifecycle-test.cpp b/tests/library/thread-wrapper-lifecycle-test.cpp index 68ab5be46..aa3111fd4 100644 --- a/tests/library/thread-wrapper-lifecycle-test.cpp +++ b/tests/library/thread-wrapper-lifecycle-test.cpp @@ -1,24 +1,15 @@ /* ThreadWrapperLifecycle(Test) - verify lifecycle aspects of the thread wrapper - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file thread-wrapper-lifecycle-test.cpp ** unit test \ref ThreadWrapperLifecycle_test diff --git a/tests/library/thread-wrapper-self-recognition-test.cpp b/tests/library/thread-wrapper-self-recognition-test.cpp index a24f51c54..b016f7912 100644 --- a/tests/library/thread-wrapper-self-recognition-test.cpp +++ b/tests/library/thread-wrapper-self-recognition-test.cpp @@ -1,24 +1,15 @@ /* ThreadWrapperSelfRecognitionTest(Test) - detect when code is running within a thread - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file thread-wrapper-self-recognition-test.cpp ** unit test \ref ThreadWrapperSelfRecognitionTest_test diff --git a/tests/library/thread-wrapper-test.cpp b/tests/library/thread-wrapper-test.cpp index 703386d67..5d272a047 100644 --- a/tests/library/thread-wrapper-test.cpp +++ b/tests/library/thread-wrapper-test.cpp @@ -1,24 +1,15 @@ /* ThreadWrapper(Test) - starting threads and passing context - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file thread-wrapper-test.cpp ** unit test \ref ThreadWrapper_test diff --git a/tests/library/typed-allocation-manager-test.cpp b/tests/library/typed-allocation-manager-test.cpp index 0a562d589..158341fb3 100644 --- a/tests/library/typed-allocation-manager-test.cpp +++ b/tests/library/typed-allocation-manager-test.cpp @@ -1,24 +1,15 @@ /* TypedAllocationManager(Test) - check interface to pooled allocations - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file typed-allocation-manager-test.cpp ** unit test \ref TypedAllocationManager_test diff --git a/tests/library/unique-malloc-owner-test.cpp b/tests/library/unique-malloc-owner-test.cpp index 11c500456..606baec20 100644 --- a/tests/library/unique-malloc-owner-test.cpp +++ b/tests/library/unique-malloc-owner-test.cpp @@ -1,24 +1,15 @@ /* UniqueMallocOwner(Test) - Concept to dispatch according to the verbs of a DSL - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file unique-malloc-owner-test.cpp ** unit test \ref UniqueMallocOwner_test diff --git a/tests/library/util-collection-test.cpp b/tests/library/util-collection-test.cpp index ad49d03aa..4dfc2f4b2 100644 --- a/tests/library/util-collection-test.cpp +++ b/tests/library/util-collection-test.cpp @@ -1,24 +1,15 @@ /* UtilCollection(Test) - helpers and shortcuts for working with collections - Copyright (C) Lumiera.org - 2012, Hermann Vosseler + Copyright (C) + 2012, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util-collection-test.cpp ** unit test \ref UtilCollection_test diff --git a/tests/library/util-floordiv-test.cpp b/tests/library/util-floordiv-test.cpp index d3a4d57dc..052b2b8a9 100644 --- a/tests/library/util-floordiv-test.cpp +++ b/tests/library/util-floordiv-test.cpp @@ -1,24 +1,15 @@ /* UtilFloordiv(Test) - verify integer rounding function - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util-floordiv-test.cpp ** unit test \ref UtilFloordiv_test diff --git a/tests/library/util-floorwrap-test.cpp b/tests/library/util-floorwrap-test.cpp index 2317d82b7..f65acbcd2 100644 --- a/tests/library/util-floorwrap-test.cpp +++ b/tests/library/util-floorwrap-test.cpp @@ -1,24 +1,15 @@ /* UtilFloorwrap(Test) - verify integer scale remainder wrapping - Copyright (C) Lumiera.org - 2011, Hermann Vosseler + Copyright (C) + 2011, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util-floorwrap-test.cpp ** unit test \ref UtilFloorwrap_test diff --git a/tests/library/util-foreach-test.cpp b/tests/library/util-foreach-test.cpp index 518f6c9e2..322c90e96 100644 --- a/tests/library/util-foreach-test.cpp +++ b/tests/library/util-foreach-test.cpp @@ -1,24 +1,15 @@ /* UtilForeach(Test) - helpers to perform something for each element - Copyright (C) Lumiera.org - 2009, Hermann Vosseler + Copyright (C) + 2009, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util-foreach-test.cpp ** unit test \ref UtilForeach_test diff --git a/tests/library/util-identity-test.cpp b/tests/library/util-identity-test.cpp index a4f8c6307..455fa6d1b 100644 --- a/tests/library/util-identity-test.cpp +++ b/tests/library/util-identity-test.cpp @@ -1,24 +1,15 @@ /* UtilIdentity(Test) - helpers for identity and memory location - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util-identity-test.cpp ** unit test \ref UtilIdentity_test diff --git a/tests/library/util-parse-bool-test.cpp b/tests/library/util-parse-bool-test.cpp index 92c79c926..9a83341a2 100644 --- a/tests/library/util-parse-bool-test.cpp +++ b/tests/library/util-parse-bool-test.cpp @@ -1,24 +1,15 @@ /* UtilParseBool(Test) - derive bool value from text form - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util-parse-bool-test.cpp ** unit test \ref UtilParseBool_test diff --git a/tests/library/util-sanitised-identifier-test.cpp b/tests/library/util-sanitised-identifier-test.cpp index bc27f07c7..5466910c4 100644 --- a/tests/library/util-sanitised-identifier-test.cpp +++ b/tests/library/util-sanitised-identifier-test.cpp @@ -1,24 +1,15 @@ /* UtilSanitizedIdentifier(Test) - remove non-standard-chars and punctuation - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util-sanitised-identifier-test.cpp ** unit test \ref UtilSanitizedIdentifier_test diff --git a/tests/library/util-tuple-test.cpp b/tests/library/util-tuple-test.cpp index 332e389c8..b8fa92aa6 100644 --- a/tests/library/util-tuple-test.cpp +++ b/tests/library/util-tuple-test.cpp @@ -1,24 +1,15 @@ /* UtilTuple(Test) - helpers and shortcuts for working with tuples - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file util-tuple-test.cpp ** unit test \ref UtilTuple_test diff --git a/tests/library/variant-test.cpp b/tests/library/variant-test.cpp index 9433244e5..5a8e2a222 100644 --- a/tests/library/variant-test.cpp +++ b/tests/library/variant-test.cpp @@ -1,24 +1,15 @@ /* Variant(Test) - verify the lightweight typesafe union record - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file variant-test.cpp ** unit test \ref Variant_test diff --git a/tests/library/vector-transfer-test.cpp b/tests/library/vector-transfer-test.cpp index ff07f64c0..b55423868 100644 --- a/tests/library/vector-transfer-test.cpp +++ b/tests/library/vector-transfer-test.cpp @@ -1,24 +1,15 @@ /* VectorTransfer(Test) - intercept object copying when a STL vector grows - Copyright (C) Lumiera.org - 2008, Hermann Vosseler + Copyright (C) + 2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file vector-transfer-test.cpp ** unit test \ref VectorTransfer_test diff --git a/tests/library/verb-function-dispatch-test.cpp b/tests/library/verb-function-dispatch-test.cpp index 17564e7bb..1c1beab47 100644 --- a/tests/library/verb-function-dispatch-test.cpp +++ b/tests/library/verb-function-dispatch-test.cpp @@ -1,24 +1,15 @@ /* VerbFunctionDispatch(Test) - Concept to dispatch according to the verbs of a DSL - Copyright (C) Lumiera.org - 2014, Hermann Vosseler + Copyright (C) + 2014, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file verb-function-dispatch-test.cpp ** Demonstrate the concept of a _verb language_ based on double dispatch. diff --git a/tests/library/verb-visitor-dispatch-test.cpp b/tests/library/verb-visitor-dispatch-test.cpp index 7d14791fe..297b44671 100644 --- a/tests/library/verb-visitor-dispatch-test.cpp +++ b/tests/library/verb-visitor-dispatch-test.cpp @@ -1,24 +1,15 @@ /* VerbVisitorDispatch(Test) - Setup to dispatch to arbitrary functions on a receiver interface - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file verb-visitor-dispatch-test.cpp ** Demonstrate the extended concept of a _verb language_ based on double dispatch. diff --git a/tests/operation/bugs/hello-bug-test.cpp b/tests/operation/bugs/hello-bug-test.cpp index a637143ce..bf3e3b30c 100644 --- a/tests/operation/bugs/hello-bug-test.cpp +++ b/tests/operation/bugs/hello-bug-test.cpp @@ -1,24 +1,15 @@ /* HelloBug(Test) - placeholder for running bug regression tests - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file hello-bug-test.cpp ** unit test \ref HelloBug_test diff --git a/tests/plugin/test-c-plugin/example-plugin.c b/tests/plugin/test-c-plugin/example-plugin.c index c61bbd4d5..95cf89a0a 100644 --- a/tests/plugin/test-c-plugin/example-plugin.c +++ b/tests/plugin/test-c-plugin/example-plugin.c @@ -1,24 +1,15 @@ /* ExamplePlugin - example plugin for testing the interface/plugin system - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file example-plugin.c ** Dummy C plug-in to cover the plugin loader for unit test @@ -136,8 +127,8 @@ LUMIERA_INTERFACE_INSTANCE (lumieraorg_interfacedescriptor, 0, { (void)iface; return - "Copyright (C) Lumiera.org\n" - " 2008 Christian Thaeter "; + "Copyright (C)\n" + " 2008, Christian Thaeter "; } ), LUMIERA_INTERFACE_INLINE (license, @@ -145,19 +136,11 @@ LUMIERA_INTERFACE_INSTANCE (lumieraorg_interfacedescriptor, 0, { (void)iface; return - "This program is free software; you can redistribute it and/or modify\n" - "it under the terms of the GNU General Public License as published by\n" - "the Free Software Foundation; either version 2 of the License, or\n" - "(at your option) any later version.\n" - "\n" - "This program is distributed in the hope that it will be useful,\n" - "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" - "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" - "GNU General Public License for more details.\n" - "\n" - "You should have received a copy of the GNU General Public License\n" - "along with this program; if not, write to the Free Software\n" - "Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA"; + "**Lumiera** is free software; you can redistribute it and/or modify it\n" + "under the terms of the GNU General Public License as published by the\n" + "Free Software Foundation; either version 2 of the License, or (at your\n" + "option) any later version. See the file COPYING for further details." + ; } ), diff --git a/tests/plugin/test-cpp-plugin/example-plugin.cpp b/tests/plugin/test-cpp-plugin/example-plugin.cpp index 62e88fa34..0e37bbe3a 100644 --- a/tests/plugin/test-cpp-plugin/example-plugin.cpp +++ b/tests/plugin/test-cpp-plugin/example-plugin.cpp @@ -1,25 +1,16 @@ /* ExamplePlugin - example plugin (C++) for testing the interface/plugin system - Copyright (C) Lumiera.org + Copyright (C) 2008, Christian Thaeter , Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file example-plugin.cpp ** Dummy C++ plug-in to cover the plugin loader for unit test diff --git a/tests/stage/abstract-tangible-test.cpp b/tests/stage/abstract-tangible-test.cpp index 47f3e1bee..8ca842aaf 100644 --- a/tests/stage/abstract-tangible-test.cpp +++ b/tests/stage/abstract-tangible-test.cpp @@ -1,24 +1,15 @@ /* AbstractTangible(Test) - cover the operations of any tangible UI element - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file abstract-tangible-test.cpp diff --git a/tests/stage/bus-term-test.cpp b/tests/stage/bus-term-test.cpp index 6c44352cf..aa82c4166 100644 --- a/tests/stage/bus-term-test.cpp +++ b/tests/stage/bus-term-test.cpp @@ -1,24 +1,15 @@ /* BusTerm(Test) - cover the building block of the UI-Bus - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file bus-term-test.cpp ** unit test \ref BusTerm_test diff --git a/tests/stage/ctrl/state-map-grouping-storage-test.cpp b/tests/stage/ctrl/state-map-grouping-storage-test.cpp index ef5f77a9e..f388b261f 100644 --- a/tests/stage/ctrl/state-map-grouping-storage-test.cpp +++ b/tests/stage/ctrl/state-map-grouping-storage-test.cpp @@ -1,24 +1,15 @@ /* StateMapGroupingStorage(Test) - verify storage table for capturing UI state - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file state-map-grouping-storage-test.cpp ** unit test \ref StateMapGroupingStorage_test diff --git a/tests/stage/gen-node-location-query.hpp b/tests/stage/gen-node-location-query.hpp index db0bbd779..2df708cdb 100644 --- a/tests/stage/gen-node-location-query.hpp +++ b/tests/stage/gen-node-location-query.hpp @@ -1,22 +1,13 @@ /* GEN-NODE-LOCATION-QUERY.hpp - pose UI-coordinate location queries against a GenNode structure - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/stage/interact/cmd-context-test.cpp b/tests/stage/interact/cmd-context-test.cpp index d538d4e5a..d69db4030 100644 --- a/tests/stage/interact/cmd-context-test.cpp +++ b/tests/stage/interact/cmd-context-test.cpp @@ -1,24 +1,15 @@ /* CmdContext(Test) - verify access to command invocation state - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file cmd-context-test.cpp ** unit test \ref CmdContext_test diff --git a/tests/stage/interact/ui-coord-resolver-test.cpp b/tests/stage/interact/ui-coord-resolver-test.cpp index 20132e4e3..0e89a5f38 100644 --- a/tests/stage/interact/ui-coord-resolver-test.cpp +++ b/tests/stage/interact/ui-coord-resolver-test.cpp @@ -1,24 +1,15 @@ /* UICoordResolver(Test) - resolve UI coordinates against actual topology - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-coord-resolver-test.cpp ** unit test \ref UICoordResolver_test diff --git a/tests/stage/interact/ui-coord-test.cpp b/tests/stage/interact/ui-coord-test.cpp index 9dd4e129a..950d49074 100644 --- a/tests/stage/interact/ui-coord-test.cpp +++ b/tests/stage/interact/ui-coord-test.cpp @@ -1,24 +1,15 @@ /* UICoord(Test) - properties of topological UI coordinate specifications - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-coord-test.cpp ** unit test \ref UICoord_test diff --git a/tests/stage/interact/ui-location-solver-test.cpp b/tests/stage/interact/ui-location-solver-test.cpp index cd47a3359..d1a24c376 100644 --- a/tests/stage/interact/ui-location-solver-test.cpp +++ b/tests/stage/interact/ui-location-solver-test.cpp @@ -1,24 +1,15 @@ /* UILocationSolver(Test) - verify mechanics of a DSL to configure view allocation - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file ui-location-solver-test.cpp ** unit test \ref UILocationSolver_test diff --git a/tests/stage/interact/view-spec-dsl-test.cpp b/tests/stage/interact/view-spec-dsl-test.cpp index 48d3b5fdc..c83a65d61 100644 --- a/tests/stage/interact/view-spec-dsl-test.cpp +++ b/tests/stage/interact/view-spec-dsl-test.cpp @@ -1,24 +1,15 @@ /* ViewSpecDSL(Test) - verify mechanics of a DSL to configure view allocation - Copyright (C) Lumiera.org - 2017, Hermann Vosseler + Copyright (C) + 2017, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file view-spec-dsl-test.cpp ** unit test \ref ViewSpecDSL_test diff --git a/tests/stage/model/canvas-hook-test.cpp b/tests/stage/model/canvas-hook-test.cpp index 836404337..a4058b334 100644 --- a/tests/stage/model/canvas-hook-test.cpp +++ b/tests/stage/model/canvas-hook-test.cpp @@ -1,24 +1,15 @@ /* CanvasHook(Test) - verify abstracted canvas attachment - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file canvas-hook-test.cpp ** unit test \ref CanvasHook_test diff --git a/tests/stage/model/element-access-test.cpp b/tests/stage/model/element-access-test.cpp index 56098f35c..a468c92b5 100644 --- a/tests/stage/model/element-access-test.cpp +++ b/tests/stage/model/element-access-test.cpp @@ -1,24 +1,15 @@ /* ElementAccess(Test) - verify mechanics of low-level UI element access - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file element-access-test.cpp ** unit test \ref ElementAccess_test diff --git a/tests/stage/model/view-hook-test.cpp b/tests/stage/model/view-hook-test.cpp index 08acb6e6f..f711754e2 100644 --- a/tests/stage/model/view-hook-test.cpp +++ b/tests/stage/model/view-hook-test.cpp @@ -1,24 +1,15 @@ /* ViewHook(Test) - verify abstracted presentation attachment - Copyright (C) Lumiera.org - 2019, Hermann Vosseler + Copyright (C) + 2019, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file view-hook-test.cpp ** unit test \ref ViewHook_test diff --git a/tests/stage/model/w-link-test.cpp b/tests/stage/model/w-link-test.cpp index e3f8297f0..ca1118b9b 100644 --- a/tests/stage/model/w-link-test.cpp +++ b/tests/stage/model/w-link-test.cpp @@ -1,24 +1,15 @@ /* WLink(Test) - verify managed link to sigc::trackable widget - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file w-link-test.cpp ** unit test \ref WLink_test diff --git a/tests/stage/model/zoom-window-test.cpp b/tests/stage/model/zoom-window-test.cpp index b431a0386..0681de868 100644 --- a/tests/stage/model/zoom-window-test.cpp +++ b/tests/stage/model/zoom-window-test.cpp @@ -1,24 +1,15 @@ /* ZoomWindow(Test) - verify translation from model to screen coordinates - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file zoom-window-test.cpp ** unit test \ref ZoomWindow_test diff --git a/tests/stage/test/mock-elm.hpp b/tests/stage/test/mock-elm.hpp index c39c7b71b..7a1ddbf10 100644 --- a/tests/stage/test/mock-elm.hpp +++ b/tests/stage/test/mock-elm.hpp @@ -1,22 +1,13 @@ /* MOCK-ELM.hpp - generic mock UI element for unit testing - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/stage/test/placeholder-command.hpp b/tests/stage/test/placeholder-command.hpp index 3bf53c0be..0dc5e0414 100644 --- a/tests/stage/test/placeholder-command.hpp +++ b/tests/stage/test/placeholder-command.hpp @@ -1,22 +1,13 @@ /* PLACEHOLDER-COMMAND.hpp - fake operation to mock command invocation from UI - Copyright (C) Lumiera.org - 2016, Hermann Vosseler + Copyright (C) + 2016, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/stage/test/test-element-access.hpp b/tests/stage/test/test-element-access.hpp index b9ef7e4d5..603adc7e1 100644 --- a/tests/stage/test/test-element-access.hpp +++ b/tests/stage/test/test-element-access.hpp @@ -1,22 +1,13 @@ /* TEST-ELEMENT-ACCESS.hpp - fake access directory to handle generic UI entities for test - Copyright (C) Lumiera.org - 2018, Hermann Vosseler + Copyright (C) + 2018, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/stage/test/test-nexus.cpp b/tests/stage/test/test-nexus.cpp index 2eb38c2fd..71c5e16db 100644 --- a/tests/stage/test/test-nexus.cpp +++ b/tests/stage/test/test-nexus.cpp @@ -1,24 +1,15 @@ /* test::Nexus - implementation base for test user interface backbone - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test/test-nexus.cpp diff --git a/tests/stage/test/test-nexus.hpp b/tests/stage/test/test-nexus.hpp index f0d21753d..c958703ce 100644 --- a/tests/stage/test/test-nexus.hpp +++ b/tests/stage/test/test-nexus.hpp @@ -1,22 +1,13 @@ /* TEST-NEXUS.hpp - fake user interface backbone for test support - Copyright (C) Lumiera.org - 2015, Hermann Vosseler + Copyright (C) + 2015, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/test.sh b/tests/test.sh index 0f7730c82..8c13810eb 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -1,20 +1,21 @@ #!/usr/bin/env bash -# Copyright (C) Lumiera.org -# 2007, 2008, 2009, 2010, Christian Thaeter # -# 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 2 of the -# License, or (at your option) any later version. +# Copyright (C) +# 2007-2010, Christian Thaeter # -# 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. +# 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 2 of the +# License, or (at your option) any later version. # -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +# 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, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # TESTMODE=FULL yet unimplemented # run all tests, PLANNED which fail count as error diff --git a/tests/testrunner.cpp b/tests/testrunner.cpp index 2cf899b40..431e78e63 100644 --- a/tests/testrunner.cpp +++ b/tests/testrunner.cpp @@ -1,25 +1,15 @@ /* Testrunner - execute a suite of test objects, possibly filtered by category - Copyright (C) Lumiera.org - 2008, Christian Thaeter - Hermann Vosseler + Copyright (C) + 2007,2008, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file testrunner.cpp ** Lumiera unit test suite diff --git a/tests/tool/vgsuppression.c b/tests/tool/vgsuppression.c index 37bf5eb09..39ac0b119 100644 --- a/tests/tool/vgsuppression.c +++ b/tests/tool/vgsuppression.c @@ -1,22 +1,13 @@ /* vgsuppression.c - Helper program to generate valgrind suppression files - Copyright (C) Lumiera.org - 2008, Christian Thaeter + Copyright (C) + 2008, Christian Thaeter - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ /** @file vgsuppression.c diff --git a/tests/vault/gear/activity-detector-test.cpp b/tests/vault/gear/activity-detector-test.cpp index 1b591efa9..877ff157b 100644 --- a/tests/vault/gear/activity-detector-test.cpp +++ b/tests/vault/gear/activity-detector-test.cpp @@ -1,24 +1,15 @@ /* ActivityDetector(Test) - verify diagnostic setup to watch scheduler activities - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file activity-detector-test.cpp ** unit test \ref ActivityDetector_test diff --git a/tests/vault/gear/activity-detector.hpp b/tests/vault/gear/activity-detector.hpp index f17eb2a7c..1e93875ee 100644 --- a/tests/vault/gear/activity-detector.hpp +++ b/tests/vault/gear/activity-detector.hpp @@ -1,22 +1,13 @@ /* ACTIVITY-DETECTOR.hpp - test scaffolding to observe activities within the scheduler - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/vault/gear/block-flow-test.cpp b/tests/vault/gear/block-flow-test.cpp index 23ca9e8d7..5ed2e56b3 100644 --- a/tests/vault/gear/block-flow-test.cpp +++ b/tests/vault/gear/block-flow-test.cpp @@ -1,24 +1,15 @@ /* BlockFlow(Test) - verify scheduler memory management scheme - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file block-flow-test.cpp ** unit test \ref BlockFlow_test diff --git a/tests/vault/gear/scheduler-activity-test.cpp b/tests/vault/gear/scheduler-activity-test.cpp index 809648a94..d44d3ae89 100644 --- a/tests/vault/gear/scheduler-activity-test.cpp +++ b/tests/vault/gear/scheduler-activity-test.cpp @@ -1,24 +1,15 @@ /* SchedulerActivity(Test) - verify activities processed in the scheduler - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-activity-test.cpp ** unit test \ref SchedulerActivity_test diff --git a/tests/vault/gear/scheduler-commutator-test.cpp b/tests/vault/gear/scheduler-commutator-test.cpp index 403ea2ad2..56e88f5db 100644 --- a/tests/vault/gear/scheduler-commutator-test.cpp +++ b/tests/vault/gear/scheduler-commutator-test.cpp @@ -1,24 +1,15 @@ /* SchedulerCommutator(Test) - verify dependent activity processing in the scheduler - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-commutator-test.cpp ** unit test \ref SchedulerCommutator_test diff --git a/tests/vault/gear/scheduler-invocation-test.cpp b/tests/vault/gear/scheduler-invocation-test.cpp index 725d3b340..eab037cf6 100644 --- a/tests/vault/gear/scheduler-invocation-test.cpp +++ b/tests/vault/gear/scheduler-invocation-test.cpp @@ -1,24 +1,15 @@ /* SchedulerInvocation(Test) - verify queue processing in the scheduler - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-invocation-test.cpp ** unit test \ref SchedulerInvocation_test diff --git a/tests/vault/gear/scheduler-load-control-test.cpp b/tests/vault/gear/scheduler-load-control-test.cpp index 5dfedcd95..5f75f6cca 100644 --- a/tests/vault/gear/scheduler-load-control-test.cpp +++ b/tests/vault/gear/scheduler-load-control-test.cpp @@ -1,24 +1,15 @@ /* SchedulerLoadControl(Test) - verify scheduler load management facility - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-load-control-test.cpp ** unit test \ref SchedulerLoadControl_test diff --git a/tests/vault/gear/scheduler-service-test.cpp b/tests/vault/gear/scheduler-service-test.cpp index bef60e46b..1d4ab7121 100644 --- a/tests/vault/gear/scheduler-service-test.cpp +++ b/tests/vault/gear/scheduler-service-test.cpp @@ -1,24 +1,15 @@ /* SchedulerService(Test) - component integration test for the scheduler - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-usage-test.cpp ** unit test \ref SchedulerService_test diff --git a/tests/vault/gear/scheduler-stress-test.cpp b/tests/vault/gear/scheduler-stress-test.cpp index 3d82ebe38..eba9a1cc5 100644 --- a/tests/vault/gear/scheduler-stress-test.cpp +++ b/tests/vault/gear/scheduler-stress-test.cpp @@ -1,24 +1,15 @@ /* SchedulerStress(Test) - verify scheduler performance characteristics - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-usage-test.cpp ** unit test \ref SchedulerStress_test diff --git a/tests/vault/gear/scheduler-usage-test.cpp b/tests/vault/gear/scheduler-usage-test.cpp index 771f208e5..432281461 100644 --- a/tests/vault/gear/scheduler-usage-test.cpp +++ b/tests/vault/gear/scheduler-usage-test.cpp @@ -1,24 +1,15 @@ /* SchedulerUsage(Test) - verify standard usage patterns of the scheduler service - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file scheduler-usage-test.cpp ** unit test \ref SchedulerUsage_test diff --git a/tests/vault/gear/special-job-fun-test.cpp b/tests/vault/gear/special-job-fun-test.cpp index f480d87e8..6f96b73dc 100644 --- a/tests/vault/gear/special-job-fun-test.cpp +++ b/tests/vault/gear/special-job-fun-test.cpp @@ -1,24 +1,15 @@ /* SpecialJobFun(Test) - verify a disposable configurable job functor - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file special-job-fun-test.cpp ** unit test \ref SpecialJobFun_test diff --git a/tests/vault/gear/stress-test-rig.hpp b/tests/vault/gear/stress-test-rig.hpp index 74163eaf9..658081966 100644 --- a/tests/vault/gear/stress-test-rig.hpp +++ b/tests/vault/gear/stress-test-rig.hpp @@ -1,22 +1,13 @@ /* STRESS-TEST-RIG.hpp - setup for stress and performance investigation - Copyright (C) Lumiera.org - 2024, Hermann Vosseler + Copyright (C) + 2024, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/vault/gear/test-chain-load-test.cpp b/tests/vault/gear/test-chain-load-test.cpp index 8e8a06a67..5ac7e8091 100644 --- a/tests/vault/gear/test-chain-load-test.cpp +++ b/tests/vault/gear/test-chain-load-test.cpp @@ -1,24 +1,15 @@ /* TestChainLoad(Test) - verify diagnostic setup to watch scheduler activities - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file test-chain-load-test.cpp ** unit test \ref TestChainLoad_test diff --git a/tests/vault/gear/test-chain-load.hpp b/tests/vault/gear/test-chain-load.hpp index 197024fe3..b0dc73648 100644 --- a/tests/vault/gear/test-chain-load.hpp +++ b/tests/vault/gear/test-chain-load.hpp @@ -1,22 +1,13 @@ /* TEST-CHAIN-LOAD.hpp - produce a configurable synthetic computation load - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. */ diff --git a/tests/vault/gear/work-force-test.cpp b/tests/vault/gear/work-force-test.cpp index 3bc46fe61..551da67c5 100644 --- a/tests/vault/gear/work-force-test.cpp +++ b/tests/vault/gear/work-force-test.cpp @@ -1,24 +1,15 @@ /* WorkForce(Test) - verify worker thread service - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file work-force-test.cpp ** unit test \ref WorkForce_test diff --git a/tests/vault/mem/extent-family-test.cpp b/tests/vault/mem/extent-family-test.cpp index 803e40f9b..7dea333ec 100644 --- a/tests/vault/mem/extent-family-test.cpp +++ b/tests/vault/mem/extent-family-test.cpp @@ -1,24 +1,15 @@ /* ExtentFamily(Test) - verify cyclic extents allocation scheme - Copyright (C) Lumiera.org - 2023, Hermann Vosseler + Copyright (C) + 2023, Hermann Vosseler - 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 2 of - the License, or (at your option) any later version. +  **Lumiera** 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 2 of the License, or (at your +  option) any later version. See the file COPYING for further details. - 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - -* *****************************************************/ +* *****************************************************************/ /** @file extent-family-test.cpp ** unit test \ref ExtentFamily_test diff --git a/wiki/thinkPad.ichthyo.mm b/wiki/thinkPad.ichthyo.mm index 150c4660d..775e19ff5 100644 --- a/wiki/thinkPad.ichthyo.mm +++ b/wiki/thinkPad.ichthyo.mm @@ -17342,9 +17342,7 @@ - - - +

wenn das Diff ein Element aus einer Kind-Menge wegfallen läßt, @@ -18775,9 +18773,7 @@ - - - +

...daher scheidet die offensichtliche einfache Lösung aus: nämlich einen size-request in der Größe des Icon zu setzen... @@ -19107,9 +19103,7 @@ - - - +

Damit muß ich nach jedem Schritt nur einmal die Größe neu ermitteln; diese Werte schlagen dann aus dem λ per Seiteneffekt auf die Variablen des umschließenden Scope durch. Das λ selber ist "scheinbar" nur eine Prüf-Funktion, und wird als Solche an die Hilfsfunktionen gegeben. Nicht schön, aber auch nicht wirklich gefährlich, da sich alles in einem lokalen Namespace abspielt. Habe eine Warnung im Code hinterlassen @@ -19507,9 +19501,7 @@ - - - +

default == keines ⟹ leer @@ -19727,9 +19719,7 @@ - - - +

...würde also z.B. als Meyer's Singleton bereitgestellt, und müßte den konkreten Kontext für jeden Aufruf zugereicht bekommen; auch die Render-Vorgänge könnte man als Pool darstellen, denn es macht ohnehin keinen Sinn, alle Clips auf einmal zu rendern; wenn ein Render-Vorgang beendet ist, bleibt nur noch ein Buffer-Handle übrig für das resultierende Pixmap @@ -20106,9 +20096,7 @@ - - - +

...kann nicht recht erkennen, woher der call kommt. @@ -20420,9 +20408,7 @@ - - - +

es gibt eine EmptyTimeline @@ -20774,9 +20760,7 @@ - - - +

wichtigstes Beispiel: wir verwenden einen gemeinsamen Canvas  (Gtk::Layout) zur Darstellung. @@ -21041,9 +21025,7 @@ - - - +

alternativ kann man eine konkrete Template-Funktion deklarieren @@ -21286,9 +21268,7 @@ - - - +

...denn diese wird von der Auswertung der Track-Struktur (vor dem Zeichnen) etabliert, und andererseits beim Platzieren eines Clip genutzt. @@ -21573,9 +21553,7 @@ - - - +

es sei denn, man packt dann den ViewHook in eine eigene Sub-Komponente @@ -22084,9 +22062,7 @@ - - - +

...sonst müßte man das Einfügen als eine weitere (protected)-Operation auf dem ViewHook ausdrücken und könnte dann die Erzeugung des ViewHooked fest in den ViewHook ABC implementieren.... @@ -22490,9 +22466,7 @@ - - - +

...für die dritte Lösung, die Repräsentation bereits in der Session @@ -22814,9 +22788,7 @@ - - - +

weil dies ggfs vom Theme her schon gestyled wird @@ -23144,9 +23116,7 @@ - - - +

und wenn nicht, dann Crash @@ -23348,9 +23318,7 @@ - - - +

  • @@ -23625,9 +23593,7 @@ - - - +

    Diskussion ⟹ später! @@ -23986,9 +23952,7 @@ - - - +

    ...und für Signale sind diese Probleme bereits gelöst @@ -24363,9 +24327,7 @@ - - - +

    ...bis jetzt genügt es, das TrackProfile selbst als "dirty-flag" zu misbrauchen. Aber ich vermute, längerfristig bekommen wir irgendwo im GUI noch weiteren "dirty-state" ⟹ und dann bleibt die Frage, wo siedeln wir den an... @@ -24775,9 +24737,7 @@ - - - +

    weil wir eine Verknüpfung der Body und Header-Informationen herstellen @@ -25072,9 +25032,7 @@ - - - +

    ...um die Widgets an die nun korrekte Position gemäß Track-Profil zu schieben @@ -25535,9 +25493,7 @@ - - - +

    ...denn selbst wenn wir das für das erste Mal irgendwie hinbiegen, so kann das doch in jedem späteren draw() wieder passieren @@ -25881,9 +25837,7 @@ - - - +

    • @@ -26185,9 +26139,7 @@ - - - +

      insofern der ctor für den root-Track (fork-root) vom TimelineController aufgerufen wird, @@ -26581,9 +26533,7 @@ - - - +

      aber keine generische Quer-Beweglichkeit @@ -26889,9 +26839,7 @@ - - - +

      Proof-of-Concept: grundsätzlich lassen sich die Aufrufe so realisieren @@ -27328,9 +27276,7 @@ - - - +

      nominell: 96dpi @@ -27540,9 +27486,7 @@ - - - +

      embedded browser control @@ -27890,9 +27834,7 @@ - - - +

      die Cairo Zeichen-Operationen sind modelliert als Druckvorgang @@ -28206,9 +28148,7 @@ - - - +

      der Expander in der ersten Spalte dient dazu, das TrackHeadWidget auf eine geforderte Nenn-Höhe aufzuspannen. Anscheinend habe ich die Zellen so definiert, daß diese Diskrepanz als spacing zwischen Label, Content und SyncPadding verteilt wird @@ -28503,9 +28443,7 @@ - - - +

      Streng genommen sollte 'ex' die Höhe eines kleinen-x sein. Aber diese Information ist in vielen Fonts überhaupt nicht zuverlässig feststellbar; die resultierende Angabe kann daher unzuverlässig und fehlerhaft, oder gar nicht vorhanden sein, in welchem Fall es statthaft ist, auf ex ≔ em/2 zurückzufallen. Im Gegensatz dazu weiß man bei 'em', was man bekommt, nämlich die nominelle Font-Size (auch hierin unterscheidet sich CSS von der klassischen typographischen Praxis, in der 'em' definiert ist als die Höhe des großen-M) @@ -28730,9 +28668,7 @@ - - - +

      das ist der Basiswert für weiteres Layout-Entscheidungen @@ -29138,9 +29074,7 @@ - - - +

      weil Verallgemeinern einer einzigen Aktion @@ -29407,9 +29341,7 @@ - - - +

      nämlich einen, der einen LValue entgegennimmt @@ -29607,9 +29539,7 @@ - - - +

      ...was sich dann in einer Static-Assertion-Failure äußert. @@ -29865,9 +29795,7 @@ - - - +

      das ist nur technisch und etwas häslich, @@ -30084,9 +30012,7 @@ - - - +

      ...ist klarer, und erlaubt nebenbei auch noch, zwei Methoden einzusparen @@ -30448,9 +30374,7 @@ - - - +

      ⟹ aber auch das umgekehrte Szenario muß berücksichtigt werden: falls die Gesamthöhe von der Summe in der rechten Spalte dominiert wird, genügt es nicht, blindlings nur eine eigentlich kleinere linke Strukturspalte mit dem Δ zu beaufschlagen @@ -30793,9 +30717,7 @@ - - - +

      ...nur stimmen die Zahlenwerte im Moment nicht; @@ -31140,9 +31062,7 @@ - - - +

      weil dann nämlich someone(TM) @@ -31535,9 +31455,7 @@ - - - +

      ...in dem der Timeline body-canvas nämlich liegt @@ -31887,9 +31805,7 @@ - - - +

      ...jedenfalls nicht ohne Code-Änderung @@ -32215,9 +32131,7 @@ - - - +

      "Widget is in a background toplevel window" @@ -32512,9 +32426,7 @@ - - - +

      meine Einschätzung, basiert auf dem gtk-canvas-experiment.cpp @@ -32889,9 +32801,7 @@ - - - +

      der GTK-Zeichencode achtet sogar explizit darauf, einen CSS-Effekt mit dem korrekten Mischmodus über den bereits auf den CairoCanvas gezeichneten Content zu legen @@ -33085,9 +32995,7 @@ - - - +

      irrtümlich, denn @@ -33571,9 +33479,7 @@ - - - +

      ...wo parktischerweise der Style-Advice in einer lokalen statischen Variablen liegt @@ -33930,9 +33836,7 @@ - - - +

      direkt in der Berechnungs-Schleife erkennen, wenn wir den Präfix-Bereich durchschritten haben @@ -34313,9 +34217,7 @@ - - - +

      • @@ -34687,9 +34589,7 @@ - - - +

        kann erst erfolgen, wenn's soweit ist @@ -35037,9 +34937,7 @@ - - - +

        Ein Clip hat verschiedene Erscheinungsformen im UI @@ -35295,9 +35193,7 @@ - - - +

        ...sie verwenden dann ein LabelWidget zur Darstellung @@ -35725,9 +35621,7 @@ - - - +

        die Pixel-Koordinaten sind ein rein interner Belang für die Zeichen-Routinen; insofern genügt es, wenn die Umwandlungsfunktion stets einen konsistenten Ursprung liefert, sich aber auch sinngemäß an verändertetes Timeline-Layout anpaßt @@ -36028,9 +35922,7 @@ - - - +

        Das EventBoxWidget mußte dazu natürlich erst einmal gebaut werden; dieses ist nämlich im Grunde genommen genau die Abstraktion eines abridged clip... @@ -36379,9 +36271,7 @@ - - - +

        wie komme ich da drauf? @@ -36857,9 +36747,7 @@ - - - +

        • @@ -37140,9 +37028,7 @@ - - - +

          ...und das ist explizit so gewünscht @@ -37516,9 +37402,7 @@ - - - +

          Basis: DiffConstituent @@ -37945,9 +37829,7 @@ - - - +

          die Umrechnung Zeit → Pixel habe ich im CanvasHook versteckt @@ -38180,9 +38062,7 @@ - - - +

          ..brauchen wir Widget und Subject und Canvas @@ -38367,9 +38247,7 @@ - - - +

          denn nach dem Konstruktor-Aufruf existiert das Widget bereits ― und das heißt, diese Funktion im Listener muß nichts mehr tun, und deshalb sieht es lokal dort so aus, als hätte sich das Widget gar nicht geändert @@ -38752,9 +38630,7 @@ - - - +

           * Generated when a pointer or keyboard grab is broken. On X11, this happens @@ -39327,9 +39203,7 @@ - - - +

          sehe nur die MOVE-Meldungen.
          eigentlich sollte das Subject ebenfalls Meldungen ausspucken @@ -39532,9 +39406,7 @@ - - - +

          ...jetzt nach einigem Überlegen dämmert mir die Erinnerung... @@ -39769,9 +39641,7 @@ - - - +

          Clip zappelt ― warum? @@ -39973,9 +39843,7 @@ - - - +

          • @@ -40149,9 +40017,7 @@ - - - +

            genauer, das Action-Binding sendet eine Nachricht in den UI-Bus, aber diese muß an das korrespondierende Modell-Element addressiert werden; zwar gibt es unten im Steam-Layer einen gemeinsamen Command-Handler, und für jeden Command-Typ ist ein Skript hinterlegt — welches jedoch dann eine Element-ID als Parameter bekommen muß (oder besser sogar schon eine direkte Dependency-Injection?) @@ -40446,9 +40312,7 @@ - - - +

            CanvasHook / @@ -40824,9 +40688,7 @@ - - - +

            getter liefern Time-Values @@ -41094,9 +40956,7 @@ - - - +

            user-defined Literal: _r @@ -41262,9 +41122,7 @@ - - - +

            dies ist ein reiner Platzhalter für Tests, denn in der Praxis erwarte ich stets daß sofort zu Beginn eine Breite in Pixeln gesetzt wird — kann ja gar nicht anders sein... @@ -41483,9 +41341,7 @@ - - - +

            ...nach grober Abschätzung sind das weniger Operationen, als die Konvertierung auszuführen und zurück zu konvertieren und dann zu testen; zwar könnte der Optimiser den Test per common subexpression noch vereinfachen — aber letztlich empfinde ich das Addieren einer ULP-Konstante als deklarativer @@ -41900,9 +41756,7 @@ - - - +

            alles Andere ist in diesem Fall eben doch speziell; wir kommen bereits mit einer relativen Angabe, und die aktuelle Fensterposition spielt keine Rolle @@ -42264,9 +42118,7 @@ - - - +

            alle die hier angewendeten Heuristiken werden im normalen Einsatz niemals aktiviert, und daher profitieren wir normalerweise von der extremen Präzision der Integer-Bruchrechnung @@ -42532,9 +42384,7 @@ - - - +

            "quasi statisch" meint hier: hängt vom pxWith-Parameter ab, ist aber ansonsten unveränderlich (aber eben keine compile-time Konstante) @@ -42789,9 +42639,7 @@ - - - +

            ...das mag unsinnig erscheinen, aber der Punkt ist, wir können diese lineare Beziehung nur eingeschränkt numerisch berechnen @@ -43205,9 +43053,7 @@ - - - +

            (num * Time::SCALE) % den == 0 @@ -43630,9 +43476,7 @@ - - - +

            geht, weil die Metrik limitiert ist, insofern ist wenigstens dafür im Extremfall noch ein Bit übrig @@ -44051,9 +43895,7 @@ - - - +

            Habe dies explizit verifiziert und vergliechen mit komplett ausformulierten inline-Funktionen; wie erwartet: mit -O3 werden Lambdas komplett transparent geinlined. @@ -44335,9 +44177,7 @@ - - - +

            hier wissen wir, daß wir den Quantiser ggfs hochskalieren können auf 1e6 (er hat sich u.u mit der µ-Tick-Zahl gekürzt). Da es sich um eine valide Duration handelt, ist dieses Hochskalieren stets garantiert. Mithin ist dieser Faktor das garantierte Minimum (die schlechtest mögliche Genauigkeit ≙ 1e-6 @@ -45970,9 +45810,7 @@ - - - +

            ...dem man eine EntryID geben kann @@ -46308,9 +46146,7 @@ - - - +

            Hier besteht die Gefahr, das Stylesheet mit redundanten Definitionen zu fluten!
            Die BEM-Notation ist sinnvoll, insodern sie die intendierte Bedeutung einer Klasse klar macht @@ -46680,9 +46516,7 @@ - - - +

            und der muß vom konkreten Widget implementiert werden @@ -57154,8 +56988,8 @@ - + @@ -58243,8 +58077,7 @@ diese verwendet uint_fast32_t, das aber auf meinem System ebenfalls auf unit64_t gemapped ist

            - -
            +
            @@ -58309,8 +58142,7 @@ schon kleine Änderungen in der Payload-Funktion können die Inzidenz der Probleme drastisch ändern; beispielsweise hat das Hinzufügen einer Begrenzung per Modulo für einen Generator die Inzidenz drastisch erhöht, für einen anderen die Probleme nahezu zum Verschwinden gebracht

            - - + @@ -144346,8 +144178,8 @@ unsigned int ThreadIdAsInt = *static_cast<unsigned int*>(static_cast<vo - - + + @@ -144413,16 +144245,16 @@ unsigned int ThreadIdAsInt = *static_cast<unsigned int*>(static_cast<vo

            -   **Lumiera** is free software; you can redistribute it and/or modify it +   **Lumiera** is free software; you can redistribute it and/or modify it

            -   under the terms of the GNU General Public License as published by the +   under the terms of the GNU General Public License as published by the

            -   Free Software Foundation; either version 2 of the License, or (at your +   Free Software Foundation; either version 2 of the License, or (at your

            -   option) any later version. See the file COPYING for further details. +   option) any later version. See the file COPYING for further details.