From 4194e7468c5a5cd8408f075edeafac26c2c19554 Mon Sep 17 00:00:00 2001 From: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:05:07 +0100 Subject: [PATCH 1/8] Add copyright and spdx identifier to python files Signed-off-by: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> --- LICENSE | 3 +++ demo_pipeline/configuration_generator.py | 1 + qc_framework/qc_framework/__init__.py | 1 + qc_framework/qc_framework/__main__.py | 1 + qc_framework/qc_framework/runtime/__init__.py | 1 + qc_framework/qc_framework/runtime/models.py | 1 + qc_framework/qc_framework/runtime/runtime.py | 1 + qc_framework/tests/__init__.py | 1 + qc_framework/tests/test_runtime.py | 1 + 9 files changed, 11 insertions(+) diff --git a/LICENSE b/LICENSE index a612ad98..ca9b8a0f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,9 @@ Mozilla Public License Version 2.0 ================================== +Copyright (C) 2023 CARIAD +Copyright (C) 2024 ASAM e.V. + 1. Definitions -------------- diff --git a/demo_pipeline/configuration_generator.py b/demo_pipeline/configuration_generator.py index be1d162b..0f83022b 100644 --- a/demo_pipeline/configuration_generator.py +++ b/demo_pipeline/configuration_generator.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/qc_framework/qc_framework/__init__.py b/qc_framework/qc_framework/__init__.py index 093437a3..d230334a 100644 --- a/qc_framework/qc_framework/__init__.py +++ b/qc_framework/qc_framework/__init__.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/qc_framework/qc_framework/__main__.py b/qc_framework/qc_framework/__main__.py index 7e9ac126..08e7b239 100644 --- a/qc_framework/qc_framework/__main__.py +++ b/qc_framework/qc_framework/__main__.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/qc_framework/qc_framework/runtime/__init__.py b/qc_framework/qc_framework/runtime/__init__.py index 56bb8a9d..4c779817 100644 --- a/qc_framework/qc_framework/runtime/__init__.py +++ b/qc_framework/qc_framework/runtime/__init__.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/qc_framework/qc_framework/runtime/models.py b/qc_framework/qc_framework/runtime/models.py index 844e0cd6..c6010a60 100644 --- a/qc_framework/qc_framework/runtime/models.py +++ b/qc_framework/qc_framework/runtime/models.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/qc_framework/qc_framework/runtime/runtime.py b/qc_framework/qc_framework/runtime/runtime.py index e9ae5b5e..82740eef 100644 --- a/qc_framework/qc_framework/runtime/runtime.py +++ b/qc_framework/qc_framework/runtime/runtime.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/qc_framework/tests/__init__.py b/qc_framework/tests/__init__.py index 093437a3..d230334a 100644 --- a/qc_framework/tests/__init__.py +++ b/qc_framework/tests/__init__.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/qc_framework/tests/test_runtime.py b/qc_framework/tests/test_runtime.py index 8f08eee0..cae2e944 100644 --- a/qc_framework/tests/test_runtime.py +++ b/qc_framework/tests/test_runtime.py @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed From 90a7c6a93732dabb2831126b46db8d9dceb529ab Mon Sep 17 00:00:00 2001 From: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:05:57 +0100 Subject: [PATCH 2/8] Add SPDX-License-Identifier to bash scripts Signed-off-by: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> --- demo_pipeline/run_pipeline.sh | 1 + docker/test_runtime.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/demo_pipeline/run_pipeline.sh b/demo_pipeline/run_pipeline.sh index 72dda2df..a9666180 100755 --- a/demo_pipeline/run_pipeline.sh +++ b/demo_pipeline/run_pipeline.sh @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/docker/test_runtime.sh b/docker/test_runtime.sh index 236f7870..01f9c61b 100755 --- a/docker/test_runtime.sh +++ b/docker/test_runtime.sh @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed From fdfbc8b65d8318feb1bf700cb01554ae5294aa0f Mon Sep 17 00:00:00 2001 From: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:08:21 +0100 Subject: [PATCH 3/8] Add SPDX-License-Identifier to C++ files Signed-off-by: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> --- examples/checker_bundle_example/src/main.cpp | 1 + examples/checker_bundle_example/src/main.h | 1 + examples/checker_bundle_example/src/stdafx.cpp | 1 + examples/checker_bundle_example/src/stdafx.h | 1 + examples/esmini_viewer/esmini_viewer.cpp | 1 + examples/esmini_viewer/xml_util.h | 1 + examples/viewer_example/viewer_example.cpp | 1 + include/common/config_format/c_configuration.h | 1 + include/common/config_format/c_configuration_checker.h | 1 + include/common/config_format/c_configuration_checker_bundle.h | 1 + include/common/config_format/c_configuration_report_module.h | 1 + include/common/qc4openx_filesystem.h | 1 + include/common/result_format/c_checker.h | 1 + include/common/result_format/c_checker_bundle.h | 1 + include/common/result_format/c_domain_specific_info.h | 1 + include/common/result_format/c_extended_information.h | 1 + include/common/result_format/c_file_location.h | 1 + include/common/result_format/c_inertial_location.h | 1 + include/common/result_format/c_issue.h | 1 + include/common/result_format/c_locations_container.h | 1 + include/common/result_format/c_metadata.h | 1 + include/common/result_format/c_parameter_container.h | 1 + include/common/result_format/c_result_container.h | 1 + include/common/result_format/c_rule.h | 1 + include/common/result_format/c_xml_location.h | 1 + include/common/result_format/i_result.h | 1 + include/common/util.h | 1 + include/common/xml/c_x_path_evaluator.h | 1 + include/common/xml/util_xerces.h | 1 + include/viewer/i_connector.h | 1 + src/common/src/config_format/c_configuration.cpp | 1 + src/common/src/config_format/c_configuration_checker.cpp | 1 + src/common/src/config_format/c_configuration_checker_bundle.cpp | 1 + src/common/src/config_format/c_configuration_report_module.cpp | 1 + src/common/src/result_format/c_checker.cpp | 1 + src/common/src/result_format/c_checker_bundle.cpp | 1 + src/common/src/result_format/c_domain_specific_info.cpp | 1 + src/common/src/result_format/c_extended_information.cpp | 1 + src/common/src/result_format/c_file_location.cpp | 1 + src/common/src/result_format/c_inertial_location.cpp | 1 + src/common/src/result_format/c_issue.cpp | 1 + src/common/src/result_format/c_locations_container.cpp | 1 + src/common/src/result_format/c_metadata.cpp | 1 + src/common/src/result_format/c_parameter_container.cpp | 1 + src/common/src/result_format/c_result_container.cpp | 1 + src/common/src/result_format/c_rule.cpp | 1 + src/common/src/result_format/c_xml_location.cpp | 1 + src/common/src/util.cpp | 1 + src/common/src/xml/c_x_path_evaluator.cpp | 1 + .../report_module_github_ci/src/report_format_github_ci.cpp | 1 + .../report_module_github_ci/src/report_format_github_ci.h | 1 + src/report_modules/report_module_github_ci/src/stdafx.cpp | 1 + src/report_modules/report_module_github_ci/src/stdafx.h | 1 + .../report_module_gui/src/qrc/poc__report_module_gui__qrc.cpp | 1 + src/report_modules/report_module_gui/src/report_format_ui.cpp | 1 + src/report_modules/report_module_gui/src/report_format_ui.h | 1 + src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp | 1 + src/report_modules/report_module_gui/src/ui/c_checker_widget.h | 1 + .../report_module_gui/src/ui/c_line_highlighter.cpp | 1 + src/report_modules/report_module_gui/src/ui/c_line_highlighter.h | 1 + .../report_module_gui/src/ui/c_report_module_window.cpp | 1 + .../report_module_gui/src/ui/c_report_module_window.h | 1 + src/report_modules/report_module_text/src/report_format_text.cpp | 1 + src/report_modules/report_module_text/src/report_format_text.h | 1 + src/report_modules/report_module_text/src/stdafx.cpp | 1 + src/report_modules/report_module_text/src/stdafx.h | 1 + src/result_pooling/src/result_pooling.cpp | 1 + src/result_pooling/src/result_pooling.h | 1 + src/result_pooling/src/stdafx.cpp | 1 + src/result_pooling/src/stdafx.h | 1 + test/function/_common/helper.cpp | 1 + test/function/_common/helper.h | 1 + test/function/_common/qc4openx_errors.h | 1 + test/function/_common/qc4openx_filesystem.h | 1 + .../example_checker_bundle/src/example_checker_bundle_tester.cpp | 1 + .../report_module_gui/src/report_module_gui_tester.cpp | 1 + .../report_module_text/src/report_module_text_tester.cpp | 1 + test/function/result_format/src/result_format_tester.cpp | 1 + test/function/result_pooling/src/result_pooling_tester.cpp | 1 + 79 files changed, 79 insertions(+) diff --git a/examples/checker_bundle_example/src/main.cpp b/examples/checker_bundle_example/src/main.cpp index 5720411b..86b4b6ca 100644 --- a/examples/checker_bundle_example/src/main.cpp +++ b/examples/checker_bundle_example/src/main.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/examples/checker_bundle_example/src/main.h b/examples/checker_bundle_example/src/main.h index 1f45ff64..0e4c1a38 100644 --- a/examples/checker_bundle_example/src/main.h +++ b/examples/checker_bundle_example/src/main.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/examples/checker_bundle_example/src/stdafx.cpp b/examples/checker_bundle_example/src/stdafx.cpp index 75048a9a..3f5de0ff 100644 --- a/examples/checker_bundle_example/src/stdafx.cpp +++ b/examples/checker_bundle_example/src/stdafx.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/examples/checker_bundle_example/src/stdafx.h b/examples/checker_bundle_example/src/stdafx.h index 4d65a490..d6a31cbd 100644 --- a/examples/checker_bundle_example/src/stdafx.h +++ b/examples/checker_bundle_example/src/stdafx.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/examples/esmini_viewer/esmini_viewer.cpp b/examples/esmini_viewer/esmini_viewer.cpp index 1e9a53d3..919ca187 100644 --- a/examples/esmini_viewer/esmini_viewer.cpp +++ b/examples/esmini_viewer/esmini_viewer.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/examples/esmini_viewer/xml_util.h b/examples/esmini_viewer/xml_util.h index f8cd5d61..278f5728 100644 --- a/examples/esmini_viewer/xml_util.h +++ b/examples/esmini_viewer/xml_util.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/examples/viewer_example/viewer_example.cpp b/examples/viewer_example/viewer_example.cpp index faba1cda..2f57773f 100644 --- a/examples/viewer_example/viewer_example.cpp +++ b/examples/viewer_example/viewer_example.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/include/common/config_format/c_configuration.h b/include/common/config_format/c_configuration.h index 71bb24a9..0959cfa8 100644 --- a/include/common/config_format/c_configuration.h +++ b/include/common/config_format/c_configuration.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/config_format/c_configuration_checker.h b/include/common/config_format/c_configuration_checker.h index 80a15261..46c1a6fb 100644 --- a/include/common/config_format/c_configuration_checker.h +++ b/include/common/config_format/c_configuration_checker.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/config_format/c_configuration_checker_bundle.h b/include/common/config_format/c_configuration_checker_bundle.h index 30b2212e..c4f22a6a 100644 --- a/include/common/config_format/c_configuration_checker_bundle.h +++ b/include/common/config_format/c_configuration_checker_bundle.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/config_format/c_configuration_report_module.h b/include/common/config_format/c_configuration_report_module.h index 6d4c5a8b..e9176d8a 100644 --- a/include/common/config_format/c_configuration_report_module.h +++ b/include/common/config_format/c_configuration_report_module.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/qc4openx_filesystem.h b/include/common/qc4openx_filesystem.h index f82be48d..cf587867 100644 --- a/include/common/qc4openx_filesystem.h +++ b/include/common/qc4openx_filesystem.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_checker.h b/include/common/result_format/c_checker.h index de9ac293..bb315f0f 100644 --- a/include/common/result_format/c_checker.h +++ b/include/common/result_format/c_checker.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_checker_bundle.h b/include/common/result_format/c_checker_bundle.h index 7ff8f34d..da9e9d54 100644 --- a/include/common/result_format/c_checker_bundle.h +++ b/include/common/result_format/c_checker_bundle.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_domain_specific_info.h b/include/common/result_format/c_domain_specific_info.h index 3963b9cd..824af487 100644 --- a/include/common/result_format/c_domain_specific_info.h +++ b/include/common/result_format/c_domain_specific_info.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/include/common/result_format/c_extended_information.h b/include/common/result_format/c_extended_information.h index a01102cf..1b4216ac 100644 --- a/include/common/result_format/c_extended_information.h +++ b/include/common/result_format/c_extended_information.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_file_location.h b/include/common/result_format/c_file_location.h index a4c3d258..015bf375 100644 --- a/include/common/result_format/c_file_location.h +++ b/include/common/result_format/c_file_location.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_inertial_location.h b/include/common/result_format/c_inertial_location.h index c0230b87..b1d34c9b 100644 --- a/include/common/result_format/c_inertial_location.h +++ b/include/common/result_format/c_inertial_location.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_issue.h b/include/common/result_format/c_issue.h index df840b5f..2ff8f3f2 100644 --- a/include/common/result_format/c_issue.h +++ b/include/common/result_format/c_issue.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_locations_container.h b/include/common/result_format/c_locations_container.h index e3c4df61..66f0c71a 100644 --- a/include/common/result_format/c_locations_container.h +++ b/include/common/result_format/c_locations_container.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_metadata.h b/include/common/result_format/c_metadata.h index f44baaf3..b5c03269 100644 --- a/include/common/result_format/c_metadata.h +++ b/include/common/result_format/c_metadata.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/include/common/result_format/c_parameter_container.h b/include/common/result_format/c_parameter_container.h index cd47d9f8..960a86fd 100644 --- a/include/common/result_format/c_parameter_container.h +++ b/include/common/result_format/c_parameter_container.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_result_container.h b/include/common/result_format/c_result_container.h index a10baa17..d652dced 100644 --- a/include/common/result_format/c_result_container.h +++ b/include/common/result_format/c_result_container.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/c_rule.h b/include/common/result_format/c_rule.h index 2e3bf79d..ecb83bbc 100644 --- a/include/common/result_format/c_rule.h +++ b/include/common/result_format/c_rule.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/include/common/result_format/c_xml_location.h b/include/common/result_format/c_xml_location.h index 9490c707..cb80b698 100644 --- a/include/common/result_format/c_xml_location.h +++ b/include/common/result_format/c_xml_location.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/result_format/i_result.h b/include/common/result_format/i_result.h index 863b5559..0fe46434 100644 --- a/include/common/result_format/i_result.h +++ b/include/common/result_format/i_result.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/util.h b/include/common/util.h index e6c1d250..bb687abb 100644 --- a/include/common/util.h +++ b/include/common/util.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/xml/c_x_path_evaluator.h b/include/common/xml/c_x_path_evaluator.h index 9760316c..dba27556 100644 --- a/include/common/xml/c_x_path_evaluator.h +++ b/include/common/xml/c_x_path_evaluator.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/common/xml/util_xerces.h b/include/common/xml/util_xerces.h index c0fc3797..8cddbc5d 100644 --- a/include/common/xml/util_xerces.h +++ b/include/common/xml/util_xerces.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/include/viewer/i_connector.h b/include/viewer/i_connector.h index 11e03295..d677e849 100644 --- a/include/viewer/i_connector.h +++ b/include/viewer/i_connector.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/config_format/c_configuration.cpp b/src/common/src/config_format/c_configuration.cpp index 6b2d9222..f741c06d 100644 --- a/src/common/src/config_format/c_configuration.cpp +++ b/src/common/src/config_format/c_configuration.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/config_format/c_configuration_checker.cpp b/src/common/src/config_format/c_configuration_checker.cpp index 94fa1eef..0fb5cf16 100644 --- a/src/common/src/config_format/c_configuration_checker.cpp +++ b/src/common/src/config_format/c_configuration_checker.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/config_format/c_configuration_checker_bundle.cpp b/src/common/src/config_format/c_configuration_checker_bundle.cpp index 16789252..d436d465 100644 --- a/src/common/src/config_format/c_configuration_checker_bundle.cpp +++ b/src/common/src/config_format/c_configuration_checker_bundle.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/config_format/c_configuration_report_module.cpp b/src/common/src/config_format/c_configuration_report_module.cpp index 2c16ea73..61df9368 100644 --- a/src/common/src/config_format/c_configuration_report_module.cpp +++ b/src/common/src/config_format/c_configuration_report_module.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_checker.cpp b/src/common/src/result_format/c_checker.cpp index deee9148..e9d9b0cf 100644 --- a/src/common/src/result_format/c_checker.cpp +++ b/src/common/src/result_format/c_checker.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_checker_bundle.cpp b/src/common/src/result_format/c_checker_bundle.cpp index e385fe95..ef7f74b9 100644 --- a/src/common/src/result_format/c_checker_bundle.cpp +++ b/src/common/src/result_format/c_checker_bundle.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_domain_specific_info.cpp b/src/common/src/result_format/c_domain_specific_info.cpp index ac34e38d..bfb64157 100644 --- a/src/common/src/result_format/c_domain_specific_info.cpp +++ b/src/common/src/result_format/c_domain_specific_info.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/src/common/src/result_format/c_extended_information.cpp b/src/common/src/result_format/c_extended_information.cpp index 29e22f66..9109c1d7 100644 --- a/src/common/src/result_format/c_extended_information.cpp +++ b/src/common/src/result_format/c_extended_information.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_file_location.cpp b/src/common/src/result_format/c_file_location.cpp index b323fdad..e88f39c0 100644 --- a/src/common/src/result_format/c_file_location.cpp +++ b/src/common/src/result_format/c_file_location.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_inertial_location.cpp b/src/common/src/result_format/c_inertial_location.cpp index 3697ed78..6352c8f3 100644 --- a/src/common/src/result_format/c_inertial_location.cpp +++ b/src/common/src/result_format/c_inertial_location.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_issue.cpp b/src/common/src/result_format/c_issue.cpp index 1764ce03..f09f8afc 100644 --- a/src/common/src/result_format/c_issue.cpp +++ b/src/common/src/result_format/c_issue.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_locations_container.cpp b/src/common/src/result_format/c_locations_container.cpp index 2a691cd5..1f3687e4 100644 --- a/src/common/src/result_format/c_locations_container.cpp +++ b/src/common/src/result_format/c_locations_container.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_metadata.cpp b/src/common/src/result_format/c_metadata.cpp index 1ef12638..d9d59cde 100644 --- a/src/common/src/result_format/c_metadata.cpp +++ b/src/common/src/result_format/c_metadata.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/src/common/src/result_format/c_parameter_container.cpp b/src/common/src/result_format/c_parameter_container.cpp index 4c762ac4..66dfe954 100644 --- a/src/common/src/result_format/c_parameter_container.cpp +++ b/src/common/src/result_format/c_parameter_container.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_result_container.cpp b/src/common/src/result_format/c_result_container.cpp index 2ae11ad7..24054db5 100644 --- a/src/common/src/result_format/c_result_container.cpp +++ b/src/common/src/result_format/c_result_container.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/result_format/c_rule.cpp b/src/common/src/result_format/c_rule.cpp index d6b4b1ef..eed57201 100644 --- a/src/common/src/result_format/c_rule.cpp +++ b/src/common/src/result_format/c_rule.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/src/common/src/result_format/c_xml_location.cpp b/src/common/src/result_format/c_xml_location.cpp index 48d9200e..d44ea6b8 100644 --- a/src/common/src/result_format/c_xml_location.cpp +++ b/src/common/src/result_format/c_xml_location.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/util.cpp b/src/common/src/util.cpp index a29af432..a5f11c28 100644 --- a/src/common/src/util.cpp +++ b/src/common/src/util.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/common/src/xml/c_x_path_evaluator.cpp b/src/common/src/xml/c_x_path_evaluator.cpp index 5cb48a68..00287d94 100644 --- a/src/common/src/xml/c_x_path_evaluator.cpp +++ b/src/common/src/xml/c_x_path_evaluator.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp b/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp index 7c0cc936..13d9a8ef 100644 --- a/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp +++ b/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * Copyright 2024 BMW AG diff --git a/src/report_modules/report_module_github_ci/src/report_format_github_ci.h b/src/report_modules/report_module_github_ci/src/report_format_github_ci.h index 93a7fed1..7804ddee 100644 --- a/src/report_modules/report_module_github_ci/src/report_format_github_ci.h +++ b/src/report_modules/report_module_github_ci/src/report_format_github_ci.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * Copyright 2024 BMW AG diff --git a/src/report_modules/report_module_github_ci/src/stdafx.cpp b/src/report_modules/report_module_github_ci/src/stdafx.cpp index 75048a9a..3f5de0ff 100644 --- a/src/report_modules/report_module_github_ci/src/stdafx.cpp +++ b/src/report_modules/report_module_github_ci/src/stdafx.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_github_ci/src/stdafx.h b/src/report_modules/report_module_github_ci/src/stdafx.h index 80bf8468..51be8213 100644 --- a/src/report_modules/report_module_github_ci/src/stdafx.h +++ b/src/report_modules/report_module_github_ci/src/stdafx.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_gui/src/qrc/poc__report_module_gui__qrc.cpp b/src/report_modules/report_module_gui/src/qrc/poc__report_module_gui__qrc.cpp index c6538c08..40916f58 100644 --- a/src/report_modules/report_module_gui/src/qrc/poc__report_module_gui__qrc.cpp +++ b/src/report_modules/report_module_gui/src/qrc/poc__report_module_gui__qrc.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /**************************************************************************** ** Resource object code ** diff --git a/src/report_modules/report_module_gui/src/report_format_ui.cpp b/src/report_modules/report_module_gui/src/report_format_ui.cpp index fc9b94bf..ed8df9f3 100644 --- a/src/report_modules/report_module_gui/src/report_format_ui.cpp +++ b/src/report_modules/report_module_gui/src/report_format_ui.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_gui/src/report_format_ui.h b/src/report_modules/report_module_gui/src/report_format_ui.h index 3a7db233..b979defd 100644 --- a/src/report_modules/report_module_gui/src/report_format_ui.h +++ b/src/report_modules/report_module_gui/src/report_format_ui.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp b/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp index a735ef73..f0d74b55 100644 --- a/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp +++ b/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_gui/src/ui/c_checker_widget.h b/src/report_modules/report_module_gui/src/ui/c_checker_widget.h index b0dc6e0d..f6f4ffc4 100644 --- a/src/report_modules/report_module_gui/src/ui/c_checker_widget.h +++ b/src/report_modules/report_module_gui/src/ui/c_checker_widget.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_gui/src/ui/c_line_highlighter.cpp b/src/report_modules/report_module_gui/src/ui/c_line_highlighter.cpp index 490247fb..527cec62 100644 --- a/src/report_modules/report_module_gui/src/ui/c_line_highlighter.cpp +++ b/src/report_modules/report_module_gui/src/ui/c_line_highlighter.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2024, ASAM e.V. * diff --git a/src/report_modules/report_module_gui/src/ui/c_line_highlighter.h b/src/report_modules/report_module_gui/src/ui/c_line_highlighter.h index b0ed75c9..9088c269 100644 --- a/src/report_modules/report_module_gui/src/ui/c_line_highlighter.h +++ b/src/report_modules/report_module_gui/src/ui/c_line_highlighter.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2024, ASAM e.V. * diff --git a/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp b/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp index 99574e3e..8a91a3a3 100644 --- a/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp +++ b/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_gui/src/ui/c_report_module_window.h b/src/report_modules/report_module_gui/src/ui/c_report_module_window.h index 6b4ec648..b67a81fd 100644 --- a/src/report_modules/report_module_gui/src/ui/c_report_module_window.h +++ b/src/report_modules/report_module_gui/src/ui/c_report_module_window.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_text/src/report_format_text.cpp b/src/report_modules/report_module_text/src/report_format_text.cpp index 298b9e06..9733b356 100644 --- a/src/report_modules/report_module_text/src/report_format_text.cpp +++ b/src/report_modules/report_module_text/src/report_format_text.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_text/src/report_format_text.h b/src/report_modules/report_module_text/src/report_format_text.h index 54eb7cbc..f1bd3fa1 100644 --- a/src/report_modules/report_module_text/src/report_format_text.h +++ b/src/report_modules/report_module_text/src/report_format_text.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_text/src/stdafx.cpp b/src/report_modules/report_module_text/src/stdafx.cpp index 75048a9a..3f5de0ff 100644 --- a/src/report_modules/report_module_text/src/stdafx.cpp +++ b/src/report_modules/report_module_text/src/stdafx.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/report_modules/report_module_text/src/stdafx.h b/src/report_modules/report_module_text/src/stdafx.h index 80bf8468..51be8213 100644 --- a/src/report_modules/report_module_text/src/stdafx.h +++ b/src/report_modules/report_module_text/src/stdafx.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/result_pooling/src/result_pooling.cpp b/src/result_pooling/src/result_pooling.cpp index 073a09a4..6851af36 100644 --- a/src/result_pooling/src/result_pooling.cpp +++ b/src/result_pooling/src/result_pooling.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/result_pooling/src/result_pooling.h b/src/result_pooling/src/result_pooling.h index 456fe23e..9828fe71 100644 --- a/src/result_pooling/src/result_pooling.h +++ b/src/result_pooling/src/result_pooling.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/result_pooling/src/stdafx.cpp b/src/result_pooling/src/stdafx.cpp index 75048a9a..3f5de0ff 100644 --- a/src/result_pooling/src/stdafx.cpp +++ b/src/result_pooling/src/stdafx.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/src/result_pooling/src/stdafx.h b/src/result_pooling/src/stdafx.h index 80bf8468..51be8213 100644 --- a/src/result_pooling/src/stdafx.h +++ b/src/result_pooling/src/stdafx.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/test/function/_common/helper.cpp b/test/function/_common/helper.cpp index 0a325d5f..0dd2187e 100644 --- a/test/function/_common/helper.cpp +++ b/test/function/_common/helper.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/test/function/_common/helper.h b/test/function/_common/helper.h index 1efd7f88..cc82fb5d 100644 --- a/test/function/_common/helper.h +++ b/test/function/_common/helper.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/test/function/_common/qc4openx_errors.h b/test/function/_common/qc4openx_errors.h index dc3ab3ea..b7cb9396 100644 --- a/test/function/_common/qc4openx_errors.h +++ b/test/function/_common/qc4openx_errors.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/test/function/_common/qc4openx_filesystem.h b/test/function/_common/qc4openx_filesystem.h index f82be48d..cf587867 100644 --- a/test/function/_common/qc4openx_filesystem.h +++ b/test/function/_common/qc4openx_filesystem.h @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. * diff --git a/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp b/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp index 57478c75..6539b9c2 100644 --- a/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp +++ b/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp b/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp index 7ea02485..e5e8f960 100644 --- a/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp +++ b/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp b/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp index a214740a..09c483ac 100644 --- a/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp +++ b/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * diff --git a/test/function/result_format/src/result_format_tester.cpp b/test/function/result_format/src/result_format_tester.cpp index 6dd5df7c..b31cfc11 100644 --- a/test/function/result_format/src/result_format_tester.cpp +++ b/test/function/result_format/src/result_format_tester.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /** * Copyright 2024, ASAM e.V. * diff --git a/test/function/result_pooling/src/result_pooling_tester.cpp b/test/function/result_pooling/src/result_pooling_tester.cpp index 02f70dbc..a95ff999 100644 --- a/test/function/result_pooling/src/result_pooling_tester.cpp +++ b/test/function/result_pooling/src/result_pooling_tester.cpp @@ -1,3 +1,4 @@ +// SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. * From 5fa09fdc26fa29d418692ce3d572adaf667e9bc2 Mon Sep 17 00:00:00 2001 From: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:13:48 +0100 Subject: [PATCH 4/8] Add SPDX-License-Identifier to CMakeLists.txt Signed-off-by: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> --- CMakeLists.txt | 1 + doc/CMakeLists.txt | 1 + doc/schema/CMakeLists.txt | 1 + examples/CMakeLists.txt | 1 + examples/checker_bundle_example/CMakeLists.txt | 1 + examples/esmini_viewer/CMakeLists.txt | 1 + examples/viewer_example/CMakeLists.txt | 1 + src/CMakeLists.txt | 1 + src/common/CMakeLists.txt | 1 + src/report_modules/CMakeLists.txt | 1 + src/report_modules/report_module_github_ci/CMakeLists.txt | 1 + src/report_modules/report_module_gui/CMakeLists.txt | 1 + src/report_modules/report_module_text/CMakeLists.txt | 1 + src/result_pooling/CMakeLists.txt | 1 + test/CMakeLists.txt | 1 + test/function/CMakeLists.txt | 1 + test/function/examples/CMakeLists.txt | 1 + test/function/examples/example_checker_bundle/src/CMakeLists.txt | 1 + test/function/report_modules/CMakeLists.txt | 1 + .../function/report_modules/report_module_gui/src/CMakeLists.txt | 1 + .../report_modules/report_module_text/src/CMakeLists.txt | 1 + test/function/result_format/src/CMakeLists.txt | 1 + test/function/result_pooling/src/CMakeLists.txt | 1 + test/stimuli/CMakeLists.txt | 1 + 24 files changed, 24 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5afec7db..4fdc8a48 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index b2993e13..faf11782 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/doc/schema/CMakeLists.txt b/doc/schema/CMakeLists.txt index 9704f9d2..0e598b69 100644 --- a/doc/schema/CMakeLists.txt +++ b/doc/schema/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 56a8acf6..c68def5e 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/examples/checker_bundle_example/CMakeLists.txt b/examples/checker_bundle_example/CMakeLists.txt index 1d28a8f9..8c0b7a77 100644 --- a/examples/checker_bundle_example/CMakeLists.txt +++ b/examples/checker_bundle_example/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/examples/esmini_viewer/CMakeLists.txt b/examples/esmini_viewer/CMakeLists.txt index c146d1ef..a2e38d1e 100644 --- a/examples/esmini_viewer/CMakeLists.txt +++ b/examples/esmini_viewer/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/examples/viewer_example/CMakeLists.txt b/examples/viewer_example/CMakeLists.txt index 2e713763..cdff88a3 100644 --- a/examples/viewer_example/CMakeLists.txt +++ b/examples/viewer_example/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3a47b7c0..5cd3c7bc 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 9cfe7b49..04604b20 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/src/report_modules/CMakeLists.txt b/src/report_modules/CMakeLists.txt index 05e1aa9a..e6c480ab 100644 --- a/src/report_modules/CMakeLists.txt +++ b/src/report_modules/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/src/report_modules/report_module_github_ci/CMakeLists.txt b/src/report_modules/report_module_github_ci/CMakeLists.txt index 81b97875..62c08705 100644 --- a/src/report_modules/report_module_github_ci/CMakeLists.txt +++ b/src/report_modules/report_module_github_ci/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # Copyright 2024 BMW AG # diff --git a/src/report_modules/report_module_gui/CMakeLists.txt b/src/report_modules/report_module_gui/CMakeLists.txt index f3d6fc0d..2dfc278d 100644 --- a/src/report_modules/report_module_gui/CMakeLists.txt +++ b/src/report_modules/report_module_gui/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/src/report_modules/report_module_text/CMakeLists.txt b/src/report_modules/report_module_text/CMakeLists.txt index 623c32c0..e1559a9c 100644 --- a/src/report_modules/report_module_text/CMakeLists.txt +++ b/src/report_modules/report_module_text/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/src/result_pooling/CMakeLists.txt b/src/result_pooling/CMakeLists.txt index 5ca662a8..629add9a 100644 --- a/src/result_pooling/CMakeLists.txt +++ b/src/result_pooling/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 2168c10a..65fc9cba 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/function/CMakeLists.txt b/test/function/CMakeLists.txt index d5291155..34be39ec 100644 --- a/test/function/CMakeLists.txt +++ b/test/function/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/function/examples/CMakeLists.txt b/test/function/examples/CMakeLists.txt index 99fadb54..5b146039 100644 --- a/test/function/examples/CMakeLists.txt +++ b/test/function/examples/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/function/examples/example_checker_bundle/src/CMakeLists.txt b/test/function/examples/example_checker_bundle/src/CMakeLists.txt index 3248b889..2f216220 100644 --- a/test/function/examples/example_checker_bundle/src/CMakeLists.txt +++ b/test/function/examples/example_checker_bundle/src/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/function/report_modules/CMakeLists.txt b/test/function/report_modules/CMakeLists.txt index 457923ee..4a76254d 100644 --- a/test/function/report_modules/CMakeLists.txt +++ b/test/function/report_modules/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/function/report_modules/report_module_gui/src/CMakeLists.txt b/test/function/report_modules/report_module_gui/src/CMakeLists.txt index 0a9e129f..d3dd8bdf 100644 --- a/test/function/report_modules/report_module_gui/src/CMakeLists.txt +++ b/test/function/report_modules/report_module_gui/src/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/function/report_modules/report_module_text/src/CMakeLists.txt b/test/function/report_modules/report_module_text/src/CMakeLists.txt index ab0f3006..c6c7af13 100644 --- a/test/function/report_modules/report_module_text/src/CMakeLists.txt +++ b/test/function/report_modules/report_module_text/src/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/function/result_format/src/CMakeLists.txt b/test/function/result_format/src/CMakeLists.txt index 757d48b7..33fa2f67 100644 --- a/test/function/result_format/src/CMakeLists.txt +++ b/test/function/result_format/src/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2024, ASAM e.V. # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/result_pooling/src/CMakeLists.txt b/test/function/result_pooling/src/CMakeLists.txt index 38db4805..de7c86fc 100644 --- a/test/function/result_pooling/src/CMakeLists.txt +++ b/test/function/result_pooling/src/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla diff --git a/test/stimuli/CMakeLists.txt b/test/stimuli/CMakeLists.txt index 807b1127..7747b841 100644 --- a/test/stimuli/CMakeLists.txt +++ b/test/stimuli/CMakeLists.txt @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # # This Source Code Form is subject to the terms of the Mozilla From e4940ef32f80a97e7cf74fa0360dc8bae8710c60 Mon Sep 17 00:00:00 2001 From: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:21:45 +0100 Subject: [PATCH 5/8] Add ASAM e.V. to copyright of all C++ files Signed-off-by: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> --- examples/checker_bundle_example/src/main.cpp | 1 + examples/checker_bundle_example/src/main.h | 1 + .../checker_bundle_example/src/stdafx.cpp | 1 + examples/checker_bundle_example/src/stdafx.h | 1 + examples/viewer_example/viewer_example.cpp | 1 + .../common/config_format/c_configuration.h | 1 + .../config_format/c_configuration_checker.h | 1 + .../c_configuration_checker_bundle.h | 1 + .../c_configuration_report_module.h | 1 + include/common/qc4openx_filesystem.h | 1 + include/common/result_format/c_checker.h | 1 + .../common/result_format/c_checker_bundle.h | 1 + .../result_format/c_extended_information.h | 1 + .../common/result_format/c_file_location.h | 1 + .../result_format/c_inertial_location.h | 6 +-- include/common/result_format/c_issue.h | 1 + .../result_format/c_locations_container.h | 1 + .../result_format/c_parameter_container.h | 1 + .../common/result_format/c_result_container.h | 1 + include/common/result_format/c_xml_location.h | 1 + include/common/result_format/i_result.h | 1 + include/common/util.h | 1 + include/common/xml/c_x_path_evaluator.h | 1 + include/common/xml/util_xerces.h | 1 + include/viewer/i_connector.h | 1 + src/common/softwareVersion.h.in | 15 +++--- .../src/config_format/c_configuration.cpp | 1 + .../config_format/c_configuration_checker.cpp | 1 + .../c_configuration_checker_bundle.cpp | 1 + .../c_configuration_report_module.cpp | 1 + src/common/src/result_format/c_checker.cpp | 1 + .../src/result_format/c_checker_bundle.cpp | 1 + .../result_format/c_extended_information.cpp | 1 + .../src/result_format/c_file_location.cpp | 1 + .../src/result_format/c_inertial_location.cpp | 2 +- src/common/src/result_format/c_issue.cpp | 1 + .../result_format/c_locations_container.cpp | 1 + .../result_format/c_parameter_container.cpp | 1 + .../src/result_format/c_result_container.cpp | 1 + .../src/result_format/c_xml_location.cpp | 1 + src/common/src/util.cpp | 1 + src/common/src/xml/c_x_path_evaluator.cpp | 1 + .../src/report_format_github_ci.cpp | 1 + .../src/report_format_github_ci.h | 2 +- .../report_module_github_ci/src/stdafx.cpp | 1 + .../report_module_github_ci/src/stdafx.h | 1 + .../src/report_format_ui.cpp | 1 + .../report_module_gui/src/report_format_ui.h | 1 + .../src/ui/c_checker_widget.cpp | 1 + .../src/ui/c_checker_widget.h | 1 + .../src/ui/c_report_module_window.cpp | 1 + .../src/ui/c_report_module_window.h | 1 + .../src/report_format_text.cpp | 46 +++++++------------ .../src/report_format_text.h | 1 + .../report_module_text/src/stdafx.cpp | 1 + .../report_module_text/src/stdafx.h | 1 + src/result_pooling/src/result_pooling.cpp | 1 + src/result_pooling/src/result_pooling.h | 1 + src/result_pooling/src/stdafx.cpp | 1 + src/result_pooling/src/stdafx.h | 1 + test/function/_common/helper.cpp | 1 + test/function/_common/helper.h | 1 + test/function/_common/qc4openx_errors.h | 1 + test/function/_common/qc4openx_filesystem.h | 1 + .../src/example_checker_bundle_tester.cpp | 1 + .../src/report_module_gui_tester.cpp | 1 + .../src/report_module_text_tester.cpp | 1 + .../src/result_pooling_tester.cpp | 1 + 68 files changed, 92 insertions(+), 42 deletions(-) diff --git a/examples/checker_bundle_example/src/main.cpp b/examples/checker_bundle_example/src/main.cpp index 86b4b6ca..baa09d99 100644 --- a/examples/checker_bundle_example/src/main.cpp +++ b/examples/checker_bundle_example/src/main.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/examples/checker_bundle_example/src/main.h b/examples/checker_bundle_example/src/main.h index 0e4c1a38..4b16232c 100644 --- a/examples/checker_bundle_example/src/main.h +++ b/examples/checker_bundle_example/src/main.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/examples/checker_bundle_example/src/stdafx.cpp b/examples/checker_bundle_example/src/stdafx.cpp index 3f5de0ff..af860174 100644 --- a/examples/checker_bundle_example/src/stdafx.cpp +++ b/examples/checker_bundle_example/src/stdafx.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/examples/checker_bundle_example/src/stdafx.h b/examples/checker_bundle_example/src/stdafx.h index d6a31cbd..8aedbf1a 100644 --- a/examples/checker_bundle_example/src/stdafx.h +++ b/examples/checker_bundle_example/src/stdafx.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/examples/viewer_example/viewer_example.cpp b/examples/viewer_example/viewer_example.cpp index 2f57773f..0d475a9e 100644 --- a/examples/viewer_example/viewer_example.cpp +++ b/examples/viewer_example/viewer_example.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/config_format/c_configuration.h b/include/common/config_format/c_configuration.h index 0959cfa8..04494fce 100644 --- a/include/common/config_format/c_configuration.h +++ b/include/common/config_format/c_configuration.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/config_format/c_configuration_checker.h b/include/common/config_format/c_configuration_checker.h index 46c1a6fb..da4b1828 100644 --- a/include/common/config_format/c_configuration_checker.h +++ b/include/common/config_format/c_configuration_checker.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/config_format/c_configuration_checker_bundle.h b/include/common/config_format/c_configuration_checker_bundle.h index c4f22a6a..4a7ff02f 100644 --- a/include/common/config_format/c_configuration_checker_bundle.h +++ b/include/common/config_format/c_configuration_checker_bundle.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/config_format/c_configuration_report_module.h b/include/common/config_format/c_configuration_report_module.h index e9176d8a..6e5cdd0d 100644 --- a/include/common/config_format/c_configuration_report_module.h +++ b/include/common/config_format/c_configuration_report_module.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/qc4openx_filesystem.h b/include/common/qc4openx_filesystem.h index cf587867..0854de99 100644 --- a/include/common/qc4openx_filesystem.h +++ b/include/common/qc4openx_filesystem.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_checker.h b/include/common/result_format/c_checker.h index bb315f0f..de51b9a8 100644 --- a/include/common/result_format/c_checker.h +++ b/include/common/result_format/c_checker.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_checker_bundle.h b/include/common/result_format/c_checker_bundle.h index da9e9d54..8de39a07 100644 --- a/include/common/result_format/c_checker_bundle.h +++ b/include/common/result_format/c_checker_bundle.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_extended_information.h b/include/common/result_format/c_extended_information.h index 1b4216ac..f78493a7 100644 --- a/include/common/result_format/c_extended_information.h +++ b/include/common/result_format/c_extended_information.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_file_location.h b/include/common/result_format/c_file_location.h index 015bf375..94d1dc1f 100644 --- a/include/common/result_format/c_file_location.h +++ b/include/common/result_format/c_file_location.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_inertial_location.h b/include/common/result_format/c_inertial_location.h index b1d34c9b..5aeaf59d 100644 --- a/include/common/result_format/c_inertial_location.h +++ b/include/common/result_format/c_inertial_location.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed @@ -33,8 +34,7 @@ class cInertialLocation : public cExtendedInformation * \param z: Z of the position in inertial coordinate system * \param description: Additional description */ - cInertialLocation(double x, double y, double z) - : cExtendedInformation("InertialLocation"), m_X(x), m_Y(y), m_Z(z) + cInertialLocation(double x, double y, double z) : cExtendedInformation("InertialLocation"), m_X(x), m_Y(y), m_Z(z) { } @@ -54,8 +54,6 @@ class cInertialLocation : public cExtendedInformation // Returns the Z double GetZ() const; - - protected: double m_X, m_Y, m_Z; diff --git a/include/common/result_format/c_issue.h b/include/common/result_format/c_issue.h index 2ff8f3f2..1d3f049c 100644 --- a/include/common/result_format/c_issue.h +++ b/include/common/result_format/c_issue.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_locations_container.h b/include/common/result_format/c_locations_container.h index 66f0c71a..7639fc4a 100644 --- a/include/common/result_format/c_locations_container.h +++ b/include/common/result_format/c_locations_container.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_parameter_container.h b/include/common/result_format/c_parameter_container.h index 960a86fd..32aaeb48 100644 --- a/include/common/result_format/c_parameter_container.h +++ b/include/common/result_format/c_parameter_container.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_result_container.h b/include/common/result_format/c_result_container.h index d652dced..beb062f4 100644 --- a/include/common/result_format/c_result_container.h +++ b/include/common/result_format/c_result_container.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/c_xml_location.h b/include/common/result_format/c_xml_location.h index cb80b698..cdc93a9d 100644 --- a/include/common/result_format/c_xml_location.h +++ b/include/common/result_format/c_xml_location.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/result_format/i_result.h b/include/common/result_format/i_result.h index 0fe46434..f593be3a 100644 --- a/include/common/result_format/i_result.h +++ b/include/common/result_format/i_result.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/util.h b/include/common/util.h index bb687abb..381ba4a6 100644 --- a/include/common/util.h +++ b/include/common/util.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/xml/c_x_path_evaluator.h b/include/common/xml/c_x_path_evaluator.h index dba27556..b75e14c8 100644 --- a/include/common/xml/c_x_path_evaluator.h +++ b/include/common/xml/c_x_path_evaluator.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/common/xml/util_xerces.h b/include/common/xml/util_xerces.h index 8cddbc5d..24469851 100644 --- a/include/common/xml/util_xerces.h +++ b/include/common/xml/util_xerces.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/include/viewer/i_connector.h b/include/viewer/i_connector.h index d677e849..aa10412b 100644 --- a/include/viewer/i_connector.h +++ b/include/viewer/i_connector.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/softwareVersion.h.in b/src/common/softwareVersion.h.in index 744f1a9f..f18aafd0 100644 --- a/src/common/softwareVersion.h.in +++ b/src/common/softwareVersion.h.in @@ -1,5 +1,6 @@ /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed @@ -9,16 +10,16 @@ #ifndef _SOFTWARE_VERSION_H__ #define _SOFTWARE_VERSION_H__ -// Softwareversion. +// Softwareversion. // Diese Version wird aus dem Buildsystem (CMake) automatisch erzeugt. -static const char* const BUILD_VERSION = "@QC4OPENX_VERSION@"; +static const char *const BUILD_VERSION = "@QC4OPENX_VERSION@"; -// Softwarerevision. +// Softwarerevision. // Diese Version wird aus dem Buildsystem (CMake) automatisch erzeugt. -static const char* const BUILD_REVISION = "@SCM_REVISION@"; +static const char *const BUILD_REVISION = "@SCM_REVISION@"; -// Software build time. +// Software build time. // Diese Version wird aus dem Buildsystem (CMake) automatisch erzeugt. -static const char* const BUILD_DATE = "@BUILD_DATE@"; +static const char *const BUILD_DATE = "@BUILD_DATE@"; -#endif \ No newline at end of file +#endif diff --git a/src/common/src/config_format/c_configuration.cpp b/src/common/src/config_format/c_configuration.cpp index f741c06d..2b7a5db9 100644 --- a/src/common/src/config_format/c_configuration.cpp +++ b/src/common/src/config_format/c_configuration.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/config_format/c_configuration_checker.cpp b/src/common/src/config_format/c_configuration_checker.cpp index 0fb5cf16..6c6cef66 100644 --- a/src/common/src/config_format/c_configuration_checker.cpp +++ b/src/common/src/config_format/c_configuration_checker.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/config_format/c_configuration_checker_bundle.cpp b/src/common/src/config_format/c_configuration_checker_bundle.cpp index d436d465..1cba1d57 100644 --- a/src/common/src/config_format/c_configuration_checker_bundle.cpp +++ b/src/common/src/config_format/c_configuration_checker_bundle.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/config_format/c_configuration_report_module.cpp b/src/common/src/config_format/c_configuration_report_module.cpp index 61df9368..4692213b 100644 --- a/src/common/src/config_format/c_configuration_report_module.cpp +++ b/src/common/src/config_format/c_configuration_report_module.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_checker.cpp b/src/common/src/result_format/c_checker.cpp index e9d9b0cf..384e981b 100644 --- a/src/common/src/result_format/c_checker.cpp +++ b/src/common/src/result_format/c_checker.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_checker_bundle.cpp b/src/common/src/result_format/c_checker_bundle.cpp index ef7f74b9..43acc026 100644 --- a/src/common/src/result_format/c_checker_bundle.cpp +++ b/src/common/src/result_format/c_checker_bundle.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_extended_information.cpp b/src/common/src/result_format/c_extended_information.cpp index 9109c1d7..17563aa5 100644 --- a/src/common/src/result_format/c_extended_information.cpp +++ b/src/common/src/result_format/c_extended_information.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_file_location.cpp b/src/common/src/result_format/c_file_location.cpp index e88f39c0..d01c2820 100644 --- a/src/common/src/result_format/c_file_location.cpp +++ b/src/common/src/result_format/c_file_location.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_inertial_location.cpp b/src/common/src/result_format/c_inertial_location.cpp index 6352c8f3..175722cf 100644 --- a/src/common/src/result_format/c_inertial_location.cpp +++ b/src/common/src/result_format/c_inertial_location.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed @@ -62,4 +63,3 @@ double cInertialLocation::GetZ() const { return m_Z; } - diff --git a/src/common/src/result_format/c_issue.cpp b/src/common/src/result_format/c_issue.cpp index f09f8afc..e2e410b1 100644 --- a/src/common/src/result_format/c_issue.cpp +++ b/src/common/src/result_format/c_issue.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_locations_container.cpp b/src/common/src/result_format/c_locations_container.cpp index 1f3687e4..3a9d56b8 100644 --- a/src/common/src/result_format/c_locations_container.cpp +++ b/src/common/src/result_format/c_locations_container.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_parameter_container.cpp b/src/common/src/result_format/c_parameter_container.cpp index 66dfe954..25583d2e 100644 --- a/src/common/src/result_format/c_parameter_container.cpp +++ b/src/common/src/result_format/c_parameter_container.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_result_container.cpp b/src/common/src/result_format/c_result_container.cpp index 24054db5..fc9649f4 100644 --- a/src/common/src/result_format/c_result_container.cpp +++ b/src/common/src/result_format/c_result_container.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/result_format/c_xml_location.cpp b/src/common/src/result_format/c_xml_location.cpp index d44ea6b8..6c9c8761 100644 --- a/src/common/src/result_format/c_xml_location.cpp +++ b/src/common/src/result_format/c_xml_location.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/util.cpp b/src/common/src/util.cpp index a5f11c28..8c44a27e 100644 --- a/src/common/src/util.cpp +++ b/src/common/src/util.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/src/xml/c_x_path_evaluator.cpp b/src/common/src/xml/c_x_path_evaluator.cpp index 00287d94..5ba285dc 100644 --- a/src/common/src/xml/c_x_path_evaluator.cpp +++ b/src/common/src/xml/c_x_path_evaluator.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp b/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp index 13d9a8ef..db1b29da 100644 --- a/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp +++ b/src/report_modules/report_module_github_ci/src/report_format_github_ci.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * Copyright 2024 BMW AG * * This Source Code Form is subject to the terms of the Mozilla diff --git a/src/report_modules/report_module_github_ci/src/report_format_github_ci.h b/src/report_modules/report_module_github_ci/src/report_format_github_ci.h index 7804ddee..77b5705a 100644 --- a/src/report_modules/report_module_github_ci/src/report_format_github_ci.h +++ b/src/report_modules/report_module_github_ci/src/report_format_github_ci.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * Copyright 2024 BMW AG * * This Source Code Form is subject to the terms of the Mozilla @@ -69,4 +70,3 @@ bool PrintResults(std::unique_ptr &pResultContainer); * @param issueToProcess The issue to update the description for. */ void AddPrefixForDescriptionIssueProcessor(cChecker *checker, cIssue *issueToProcess); - diff --git a/src/report_modules/report_module_github_ci/src/stdafx.cpp b/src/report_modules/report_module_github_ci/src/stdafx.cpp index 3f5de0ff..af860174 100644 --- a/src/report_modules/report_module_github_ci/src/stdafx.cpp +++ b/src/report_modules/report_module_github_ci/src/stdafx.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_github_ci/src/stdafx.h b/src/report_modules/report_module_github_ci/src/stdafx.h index 51be8213..780ae67d 100644 --- a/src/report_modules/report_module_github_ci/src/stdafx.h +++ b/src/report_modules/report_module_github_ci/src/stdafx.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_gui/src/report_format_ui.cpp b/src/report_modules/report_module_gui/src/report_format_ui.cpp index ed8df9f3..2dcbeaef 100644 --- a/src/report_modules/report_module_gui/src/report_format_ui.cpp +++ b/src/report_modules/report_module_gui/src/report_format_ui.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_gui/src/report_format_ui.h b/src/report_modules/report_module_gui/src/report_format_ui.h index b979defd..b5802cbc 100644 --- a/src/report_modules/report_module_gui/src/report_format_ui.h +++ b/src/report_modules/report_module_gui/src/report_format_ui.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp b/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp index f0d74b55..bf9ac4b0 100644 --- a/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp +++ b/src/report_modules/report_module_gui/src/ui/c_checker_widget.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_gui/src/ui/c_checker_widget.h b/src/report_modules/report_module_gui/src/ui/c_checker_widget.h index f6f4ffc4..31504882 100644 --- a/src/report_modules/report_module_gui/src/ui/c_checker_widget.h +++ b/src/report_modules/report_module_gui/src/ui/c_checker_widget.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp b/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp index 8a91a3a3..379f7015 100644 --- a/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp +++ b/src/report_modules/report_module_gui/src/ui/c_report_module_window.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_gui/src/ui/c_report_module_window.h b/src/report_modules/report_module_gui/src/ui/c_report_module_window.h index b67a81fd..ef80554f 100644 --- a/src/report_modules/report_module_gui/src/ui/c_report_module_window.h +++ b/src/report_modules/report_module_gui/src/ui/c_report_module_window.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_text/src/report_format_text.cpp b/src/report_modules/report_module_text/src/report_format_text.cpp index 9733b356..8efb9e87 100644 --- a/src/report_modules/report_module_text/src/report_format_text.cpp +++ b/src/report_modules/report_module_text/src/report_format_text.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed @@ -349,8 +350,7 @@ void WriteResults(const char *file, cResultContainer *ptrResultContainer) if ((*it_Issue)->GetRuleUID() != "") { - ss << "\n " - << "ruleUID: " << (*it_Issue)->GetRuleUID(); + ss << "\n " << "ruleUID: " << (*it_Issue)->GetRuleUID(); } PrintExtendedInformationIntoStream((*it_Issue), &ss); @@ -453,14 +453,10 @@ void WriteResults(const char *file, cResultContainer *ptrResultContainer) ss << BASIC_SEPARATOR_LINE << "\n"; - ss << "Note" - << "\n\n"; - ss << "Rule UID format:" - << "\n"; - ss << " ::x.y.z:rule_set.for_rules.rule_name" - << "\n\n"; - ss << "where " - << "\n"; + ss << "Note" << "\n\n"; + ss << "Rule UID format:" << "\n"; + ss << " ::x.y.z:rule_set.for_rules.rule_name" << "\n\n"; + ss << "where " << "\n"; ss << " Emanating Entity: a domain name for the entity (organization or company) that declares the rule UID" << "\n"; ss << " Standard: a short string that represents the standard or the domain to which the rule is applied" @@ -468,18 +464,12 @@ void WriteResults(const char *file, cResultContainer *ptrResultContainer) ss << " Definition Setting: the version of the standard or the domain to which the rule appears or is " "applied for the first time" << "\n"; - ss << " Rule Full Name: the full name of the rule, as dot separated, snake lower case string. " - << "\n"; - ss << " The full name of a rule is composed by the rule set, a categorization for the rule, " - << "\n"; - ss << " and the rule name, a unique string inside the categorization. " - << "\n"; - ss << " The rule set can be nested (meaning that can be defined as an " - << "\n"; - ss << " arbitrary sequence of dot separated names, while the name is the snake " - << "\n"; - ss << " case string after the last dot of the full name)" - << "\n"; + ss << " Rule Full Name: the full name of the rule, as dot separated, snake lower case string. " << "\n"; + ss << " The full name of a rule is composed by the rule set, a categorization for the rule, " << "\n"; + ss << " and the rule name, a unique string inside the categorization. " << "\n"; + ss << " The rule set can be nested (meaning that can be defined as an " << "\n"; + ss << " arbitrary sequence of dot separated names, while the name is the snake " << "\n"; + ss << " case string after the last dot of the full name)" << "\n"; ss << "\n" << BASIC_SEPARATOR_LINE << "\n"; @@ -512,21 +502,19 @@ void PrintExtendedInformationIntoStream(cIssue *issue, std::stringstream *ssStre if ((*extIt)->IsType()) { cFileLocation *fileLoc = (cFileLocation *)(*extIt); - *ssStream << "\n " - << " File: row=" << fileLoc->GetRow() << " column=" << fileLoc->GetColumn(); + *ssStream << "\n " << " File: row=" << fileLoc->GetRow() + << " column=" << fileLoc->GetColumn(); } else if ((*extIt)->IsType()) { cXMLLocation *xmlLoc = (cXMLLocation *)(*extIt); - *ssStream << "\n " - << " XPath: " << xmlLoc->GetXPath(); + *ssStream << "\n " << " XPath: " << xmlLoc->GetXPath(); } else if ((*extIt)->IsType()) { cInertialLocation *inertialLoc = (cInertialLocation *)(*extIt); - *ssStream << "\n " - << " Location: x=" << inertialLoc->GetX() << " y=" << inertialLoc->GetY() - << " z=" << inertialLoc->GetZ(); + *ssStream << "\n " << " Location: x=" << inertialLoc->GetX() + << " y=" << inertialLoc->GetY() << " z=" << inertialLoc->GetZ(); } } } diff --git a/src/report_modules/report_module_text/src/report_format_text.h b/src/report_modules/report_module_text/src/report_format_text.h index f1bd3fa1..1b0928a6 100644 --- a/src/report_modules/report_module_text/src/report_format_text.h +++ b/src/report_modules/report_module_text/src/report_format_text.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_text/src/stdafx.cpp b/src/report_modules/report_module_text/src/stdafx.cpp index 3f5de0ff..af860174 100644 --- a/src/report_modules/report_module_text/src/stdafx.cpp +++ b/src/report_modules/report_module_text/src/stdafx.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_text/src/stdafx.h b/src/report_modules/report_module_text/src/stdafx.h index 51be8213..780ae67d 100644 --- a/src/report_modules/report_module_text/src/stdafx.h +++ b/src/report_modules/report_module_text/src/stdafx.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/result_pooling/src/result_pooling.cpp b/src/result_pooling/src/result_pooling.cpp index 6851af36..b00c3e61 100644 --- a/src/result_pooling/src/result_pooling.cpp +++ b/src/result_pooling/src/result_pooling.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/result_pooling/src/result_pooling.h b/src/result_pooling/src/result_pooling.h index 9828fe71..c673c365 100644 --- a/src/result_pooling/src/result_pooling.h +++ b/src/result_pooling/src/result_pooling.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/result_pooling/src/stdafx.cpp b/src/result_pooling/src/stdafx.cpp index 3f5de0ff..af860174 100644 --- a/src/result_pooling/src/stdafx.cpp +++ b/src/result_pooling/src/stdafx.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/result_pooling/src/stdafx.h b/src/result_pooling/src/stdafx.h index 51be8213..780ae67d 100644 --- a/src/result_pooling/src/stdafx.h +++ b/src/result_pooling/src/stdafx.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/_common/helper.cpp b/test/function/_common/helper.cpp index 0dd2187e..3b54c356 100644 --- a/test/function/_common/helper.cpp +++ b/test/function/_common/helper.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/_common/helper.h b/test/function/_common/helper.h index cc82fb5d..8d77df91 100644 --- a/test/function/_common/helper.h +++ b/test/function/_common/helper.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/_common/qc4openx_errors.h b/test/function/_common/qc4openx_errors.h index b7cb9396..a0dfe584 100644 --- a/test/function/_common/qc4openx_errors.h +++ b/test/function/_common/qc4openx_errors.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/_common/qc4openx_filesystem.h b/test/function/_common/qc4openx_filesystem.h index cf587867..0854de99 100644 --- a/test/function/_common/qc4openx_filesystem.h +++ b/test/function/_common/qc4openx_filesystem.h @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /** * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp b/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp index 6539b9c2..bb13795c 100644 --- a/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp +++ b/test/function/examples/example_checker_bundle/src/example_checker_bundle_tester.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp b/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp index e5e8f960..456e4a82 100644 --- a/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp +++ b/test/function/report_modules/report_module_gui/src/report_module_gui_tester.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp b/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp index 09c483ac..58ce4c41 100644 --- a/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp +++ b/test/function/report_modules/report_module_text/src/report_module_text_tester.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/result_pooling/src/result_pooling_tester.cpp b/test/function/result_pooling/src/result_pooling_tester.cpp index a95ff999..216b0957 100644 --- a/test/function/result_pooling/src/result_pooling_tester.cpp +++ b/test/function/result_pooling/src/result_pooling_tester.cpp @@ -1,6 +1,7 @@ // SPDX-License-Identifier: MPL-2.0 /* * Copyright 2023 CARIAD SE. + * Copyright 2024 ASAM e.V. * * This Source Code Form is subject to the terms of the Mozilla * Public License, v. 2.0. If a copy of the MPL was not distributed From b46cb0d95e08793504ed78b539fc00f6f41d6576 Mon Sep 17 00:00:00 2001 From: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> Date: Mon, 28 Oct 2024 14:23:47 +0100 Subject: [PATCH 6/8] Add ASAM e.V. copyright to all build files Signed-off-by: hoangtungdinh <11166240+hoangtungdinh@users.noreply.github.com> --- .gitattributes | 1 + CMakeLists.txt | 1 + doc/CMakeLists.txt | 1 + doc/schema/CMakeLists.txt | 1 + examples/CMakeLists.txt | 1 + examples/checker_bundle_example/CMakeLists.txt | 1 + examples/esmini_viewer/CMakeLists.txt | 1 + examples/viewer_example/CMakeLists.txt | 1 + scripts/cmake/qc4openx-config.cmake | 1 + scripts/cmake/qt_macros.cmake | 1 + src/CMakeLists.txt | 1 + src/common/CMakeLists.txt | 1 + src/report_modules/CMakeLists.txt | 1 + src/report_modules/report_module_github_ci/CMakeLists.txt | 1 + src/report_modules/report_module_gui/CMakeLists.txt | 1 + src/report_modules/report_module_text/CMakeLists.txt | 1 + src/result_pooling/CMakeLists.txt | 1 + test/CMakeLists.txt | 1 + test/function/CMakeLists.txt | 1 + test/function/examples/CMakeLists.txt | 1 + test/function/examples/example_checker_bundle/src/CMakeLists.txt | 1 + test/function/report_modules/CMakeLists.txt | 1 + .../function/report_modules/report_module_gui/src/CMakeLists.txt | 1 + .../report_modules/report_module_text/src/CMakeLists.txt | 1 + test/function/result_pooling/src/CMakeLists.txt | 1 + test/stimuli/CMakeLists.txt | 1 + 26 files changed, 26 insertions(+) diff --git a/.gitattributes b/.gitattributes index 7a48e57c..764de43c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,5 @@ # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/CMakeLists.txt b/CMakeLists.txt index 4fdc8a48..5155d241 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index faf11782..baad0db7 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/doc/schema/CMakeLists.txt b/doc/schema/CMakeLists.txt index 0e598b69..c5758d57 100644 --- a/doc/schema/CMakeLists.txt +++ b/doc/schema/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index c68def5e..6100b293 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/examples/checker_bundle_example/CMakeLists.txt b/examples/checker_bundle_example/CMakeLists.txt index 8c0b7a77..dbe806b8 100644 --- a/examples/checker_bundle_example/CMakeLists.txt +++ b/examples/checker_bundle_example/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/examples/esmini_viewer/CMakeLists.txt b/examples/esmini_viewer/CMakeLists.txt index a2e38d1e..a5ce035e 100644 --- a/examples/esmini_viewer/CMakeLists.txt +++ b/examples/esmini_viewer/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/examples/viewer_example/CMakeLists.txt b/examples/viewer_example/CMakeLists.txt index cdff88a3..d47d6d26 100644 --- a/examples/viewer_example/CMakeLists.txt +++ b/examples/viewer_example/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/scripts/cmake/qc4openx-config.cmake b/scripts/cmake/qc4openx-config.cmake index c2fddc4b..4287713f 100644 --- a/scripts/cmake/qc4openx-config.cmake +++ b/scripts/cmake/qc4openx-config.cmake @@ -1,4 +1,5 @@ # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/scripts/cmake/qt_macros.cmake b/scripts/cmake/qt_macros.cmake index 83a2fe89..16234ec5 100644 --- a/scripts/cmake/qt_macros.cmake +++ b/scripts/cmake/qt_macros.cmake @@ -1,4 +1,5 @@ # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5cd3c7bc..e52d0267 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 04604b20..f813d944 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/CMakeLists.txt b/src/report_modules/CMakeLists.txt index e6c480ab..bc166292 100644 --- a/src/report_modules/CMakeLists.txt +++ b/src/report_modules/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_github_ci/CMakeLists.txt b/src/report_modules/report_module_github_ci/CMakeLists.txt index 62c08705..54be39f8 100644 --- a/src/report_modules/report_module_github_ci/CMakeLists.txt +++ b/src/report_modules/report_module_github_ci/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # Copyright 2024 BMW AG # # This Source Code Form is subject to the terms of the Mozilla diff --git a/src/report_modules/report_module_gui/CMakeLists.txt b/src/report_modules/report_module_gui/CMakeLists.txt index 2dfc278d..0e36ca9b 100644 --- a/src/report_modules/report_module_gui/CMakeLists.txt +++ b/src/report_modules/report_module_gui/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/report_modules/report_module_text/CMakeLists.txt b/src/report_modules/report_module_text/CMakeLists.txt index e1559a9c..4a4d839b 100644 --- a/src/report_modules/report_module_text/CMakeLists.txt +++ b/src/report_modules/report_module_text/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/src/result_pooling/CMakeLists.txt b/src/result_pooling/CMakeLists.txt index 629add9a..c1dc951b 100644 --- a/src/result_pooling/CMakeLists.txt +++ b/src/result_pooling/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 65fc9cba..08c33915 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/CMakeLists.txt b/test/function/CMakeLists.txt index 34be39ec..d22934c2 100644 --- a/test/function/CMakeLists.txt +++ b/test/function/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/examples/CMakeLists.txt b/test/function/examples/CMakeLists.txt index 5b146039..99d8ce4f 100644 --- a/test/function/examples/CMakeLists.txt +++ b/test/function/examples/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/examples/example_checker_bundle/src/CMakeLists.txt b/test/function/examples/example_checker_bundle/src/CMakeLists.txt index 2f216220..e65296ad 100644 --- a/test/function/examples/example_checker_bundle/src/CMakeLists.txt +++ b/test/function/examples/example_checker_bundle/src/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/report_modules/CMakeLists.txt b/test/function/report_modules/CMakeLists.txt index 4a76254d..665d7618 100644 --- a/test/function/report_modules/CMakeLists.txt +++ b/test/function/report_modules/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/report_modules/report_module_gui/src/CMakeLists.txt b/test/function/report_modules/report_module_gui/src/CMakeLists.txt index d3dd8bdf..24889a26 100644 --- a/test/function/report_modules/report_module_gui/src/CMakeLists.txt +++ b/test/function/report_modules/report_module_gui/src/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/report_modules/report_module_text/src/CMakeLists.txt b/test/function/report_modules/report_module_text/src/CMakeLists.txt index c6c7af13..6ca43de1 100644 --- a/test/function/report_modules/report_module_text/src/CMakeLists.txt +++ b/test/function/report_modules/report_module_text/src/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/function/result_pooling/src/CMakeLists.txt b/test/function/result_pooling/src/CMakeLists.txt index de7c86fc..44e241af 100644 --- a/test/function/result_pooling/src/CMakeLists.txt +++ b/test/function/result_pooling/src/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed diff --git a/test/stimuli/CMakeLists.txt b/test/stimuli/CMakeLists.txt index 7747b841..c6cddc51 100644 --- a/test/stimuli/CMakeLists.txt +++ b/test/stimuli/CMakeLists.txt @@ -1,5 +1,6 @@ # SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. +# Copyright 2024 ASAM e.V. # # This Source Code Form is subject to the terms of the Mozilla # Public License, v. 2.0. If a copy of the MPL was not distributed From 51544e197fb2535dca3d9c61f6f629b4efd57fa5 Mon Sep 17 00:00:00 2001 From: Hoang Tung Dinh Date: Tue, 29 Oct 2024 09:22:12 +0100 Subject: [PATCH 7/8] Update .gitattributes Signed-off-by: Hoang Tung Dinh Co-authored-by: Andreas Kern Signed-off-by: Hoang Tung Dinh --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index 764de43c..a2dc0df6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,3 +1,4 @@ +# SPDX-License-Identifier: MPL-2.0 # Copyright 2023 CARIAD SE. # Copyright 2024 ASAM e.V. # From 204a7850d411137950137188c2d87b6bb6e328cc Mon Sep 17 00:00:00 2001 From: Hoang Tung Dinh Date: Tue, 29 Oct 2024 09:22:24 +0100 Subject: [PATCH 8/8] Update LICENSE Signed-off-by: Hoang Tung Dinh Co-authored-by: Andreas Kern Signed-off-by: Hoang Tung Dinh --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index ca9b8a0f..5af7f5fa 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ Mozilla Public License Version 2.0 ================================== -Copyright (C) 2023 CARIAD +Copyright (C) 2023 CARIAD SE Copyright (C) 2024 ASAM e.V. 1. Definitions