diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2025-05-21 16:31:45 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2025-05-21 16:31:45 +0200 |
| commit | 404b0f7844d8493869f98f91a7aa6427ca64f872 (patch) | |
| tree | c0893ea1dedcceb474f313907bf56a3f5532056b /lib/src | |
| parent | 2125be7e880f026c13af6d3376a08372647cb606 (diff) | |
| download | turns-404b0f7844d8493869f98f91a7aa6427ca64f872.tar.xz turns-404b0f7844d8493869f98f91a7aa6427ca64f872.zip | |
lib: apply LGPL-2.1
Diffstat (limited to 'lib/src')
| -rw-r--r-- | lib/src/turns-enums.c.in | 5 | ||||
| -rw-r--r-- | lib/src/turns-init.cpp | 5 | ||||
| -rw-r--r-- | lib/src/turns-init.h | 5 | ||||
| -rw-r--r-- | lib/src/turns-participant.cpp | 5 | ||||
| -rw-r--r-- | lib/src/turns-participant.h | 5 | ||||
| -rw-r--r-- | lib/src/turns-turn-order.cpp | 5 | ||||
| -rw-r--r-- | lib/src/turns-turn-order.h | 7 | ||||
| -rw-r--r-- | lib/src/turns.h | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm.hpp | 7 | ||||
| -rw-r--r-- | lib/src/turnsmm/enum_helpers.hpp | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm/init.cpp | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm/init.hpp | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm/participant.cpp | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm/participant.hpp | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm/private/participant_p.hpp | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm/private/turn-order_p.hpp | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm/turn-order.cpp | 5 | ||||
| -rw-r--r-- | lib/src/turnsmm/turn-order.hpp | 5 |
18 files changed, 92 insertions, 2 deletions
diff --git a/lib/src/turns-enums.c.in b/lib/src/turns-enums.c.in index e2ed865..3789972 100644 --- a/lib/src/turns-enums.c.in +++ b/lib/src/turns-enums.c.in @@ -1,4 +1,9 @@ /*** BEGIN file-header ***/ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #include <glib.h> #include <glib-object.h> #include <stddef.h> diff --git a/lib/src/turns-init.cpp b/lib/src/turns-init.cpp index 0d6a808..13a42cc 100644 --- a/lib/src/turns-init.cpp +++ b/lib/src/turns-init.cpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #include "turns-init.h" #include "turns-participant.h" diff --git a/lib/src/turns-init.h b/lib/src/turns-init.h index a6e2013..dc96fc5 100644 --- a/lib/src/turns-init.h +++ b/lib/src/turns-init.h @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNS_INIT_H #define TURNS_INIT_H diff --git a/lib/src/turns-participant.cpp b/lib/src/turns-participant.cpp index 97a7ed0..e69de6e 100644 --- a/lib/src/turns-participant.cpp +++ b/lib/src/turns-participant.cpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #include "turns-participant.h" #include <glib-object.h> diff --git a/lib/src/turns-participant.h b/lib/src/turns-participant.h index 53392f1..1d9950b 100644 --- a/lib/src/turns-participant.h +++ b/lib/src/turns-participant.h @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNS_PARTICIPANT_H #define TURNS_PARTICIPANT_H diff --git a/lib/src/turns-turn-order.cpp b/lib/src/turns-turn-order.cpp index 7ec9b52..7c8b5cf 100644 --- a/lib/src/turns-turn-order.cpp +++ b/lib/src/turns-turn-order.cpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #include "turns-turn-order.h" #include "turns-participant.h" diff --git a/lib/src/turns-turn-order.h b/lib/src/turns-turn-order.h index 3b05521..cc524c6 100644 --- a/lib/src/turns-turn-order.h +++ b/lib/src/turns-turn-order.h @@ -1,4 +1,9 @@ -#ifndef TURNS_TURN_ORDER_H +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + + #ifndef TURNS_TURN_ORDER_H #define TURNS_TURN_ORDER_H #include "turns-participant.h" diff --git a/lib/src/turns.h b/lib/src/turns.h index e9aaf95..ed6a0bf 100644 --- a/lib/src/turns.h +++ b/lib/src/turns.h @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNS_H #define TURNS_H diff --git a/lib/src/turnsmm.hpp b/lib/src/turnsmm.hpp index 122a5c9..e0b6d3a 100644 --- a/lib/src/turnsmm.hpp +++ b/lib/src/turnsmm.hpp @@ -1,4 +1,9 @@ -#ifndef TURNSMM_HPP +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + + #ifndef TURNSMM_HPP #define TURNSMM_HPP #include "turnsmm/participant.hpp" // IWYU pragma: export diff --git a/lib/src/turnsmm/enum_helpers.hpp b/lib/src/turnsmm/enum_helpers.hpp index a3f1455..60b8cd7 100644 --- a/lib/src/turnsmm/enum_helpers.hpp +++ b/lib/src/turnsmm/enum_helpers.hpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNSMM_ENUM_HELPERS_HPP #define TURNSMM_ENUM_HELPERS_HPP diff --git a/lib/src/turnsmm/init.cpp b/lib/src/turnsmm/init.cpp index 3104b1d..e649797 100644 --- a/lib/src/turnsmm/init.cpp +++ b/lib/src/turnsmm/init.cpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #include "turnsmm/init.hpp" #include "turns-init.h" diff --git a/lib/src/turnsmm/init.hpp b/lib/src/turnsmm/init.hpp index a9ee8cc..c22b4c9 100644 --- a/lib/src/turnsmm/init.hpp +++ b/lib/src/turnsmm/init.hpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNSMM_INIT_HPP #define TURNSMM_INIT_HPP diff --git a/lib/src/turnsmm/participant.cpp b/lib/src/turnsmm/participant.cpp index 170c3a2..754339d 100644 --- a/lib/src/turnsmm/participant.cpp +++ b/lib/src/turnsmm/participant.cpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #include "turnsmm/participant.hpp" #include "turns-participant.h" diff --git a/lib/src/turnsmm/participant.hpp b/lib/src/turnsmm/participant.hpp index c76cc29..6dece0e 100644 --- a/lib/src/turnsmm/participant.hpp +++ b/lib/src/turnsmm/participant.hpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNSMM_PARTICIPANT_HPP #define TURNSMM_PARTICIPANT_HPP diff --git a/lib/src/turnsmm/private/participant_p.hpp b/lib/src/turnsmm/private/participant_p.hpp index e3f4ce8..d0f4f0d 100644 --- a/lib/src/turnsmm/private/participant_p.hpp +++ b/lib/src/turnsmm/private/participant_p.hpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNSMM_PARTICIPANT_P_HPP #define TURNSMM_PARTICIPANT_P_HPP diff --git a/lib/src/turnsmm/private/turn-order_p.hpp b/lib/src/turnsmm/private/turn-order_p.hpp index b128fd4..d694b3e 100644 --- a/lib/src/turnsmm/private/turn-order_p.hpp +++ b/lib/src/turnsmm/private/turn-order_p.hpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNSMM_TURN_ORDER_P_HPP #define TURNSMM_TURN_ORDER_P_HPP diff --git a/lib/src/turnsmm/turn-order.cpp b/lib/src/turnsmm/turn-order.cpp index 00fb30d..7fefa01 100644 --- a/lib/src/turnsmm/turn-order.cpp +++ b/lib/src/turnsmm/turn-order.cpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #include "turnsmm/turn-order.hpp" #include "turns-turn-order.h" diff --git a/lib/src/turnsmm/turn-order.hpp b/lib/src/turnsmm/turn-order.hpp index 0283cb3..caaac24 100644 --- a/lib/src/turnsmm/turn-order.hpp +++ b/lib/src/turnsmm/turn-order.hpp @@ -1,3 +1,8 @@ +/* + * SPDX-FileCopyrightText: 2025 Felix Morgner <felix.morgner@gmail.com> + * SPDX-License-Identifier: LGPL-2.1-only + */ + #ifndef TURNSMM_TURN_ORDER_HPP #define TURNSMM_TURN_ORDER_HPP |
