From 7c35f03c0d05aece379867f14a85b77204b68879 Mon Sep 17 00:00:00 2001 From: Alexey Gavrilov Date: Tue, 9 Jun 2026 20:02:43 +0700 Subject: Apply the GPLv3 license Copyright disclaimer and copyright note are prepending to a every source file. Add license section in the `README.md` file. Create the `LICENSE` file with license information. Signed-off-by: Alexey Gavrilov --- include/CMakeLists.txt | 18 ++++++++++++++++++ include/ISingleton.h | 18 ++++++++++++++++++ include/MemoryOperations.cpp | 18 ++++++++++++++++++ include/MemoryOperations.h | 18 ++++++++++++++++++ include/StringOperations.cpp | 18 ++++++++++++++++++ include/StringOperations.h | 18 ++++++++++++++++++ include/Templates.h | 18 ++++++++++++++++++ include/TypeConverter.cpp | 18 ++++++++++++++++++ include/TypeConverter.h | 18 ++++++++++++++++++ include/Types.h | 18 ++++++++++++++++++ include/containers/CMakeLists.txt | 18 ++++++++++++++++++ include/containers/Tuple.h | 18 ++++++++++++++++++ 12 files changed, 216 insertions(+) (limited to 'include') diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 1b06451..ac5defc 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -1,3 +1,21 @@ +#[[ + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + ]] + add_library(Include STATIC) target_sources(Include diff --git a/include/ISingleton.h b/include/ISingleton.h index 1dcd0d1..987010b 100644 --- a/include/ISingleton.h +++ b/include/ISingleton.h @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #ifndef SINGLETON_H #define SINGLETON_H diff --git a/include/MemoryOperations.cpp b/include/MemoryOperations.cpp index 5d82dac..dc60d05 100644 --- a/include/MemoryOperations.cpp +++ b/include/MemoryOperations.cpp @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #include uint32 MemoryOperations::copy(void *source, void *destination, uint32 sizeBytes) diff --git a/include/MemoryOperations.h b/include/MemoryOperations.h index ef116dd..428d273 100644 --- a/include/MemoryOperations.h +++ b/include/MemoryOperations.h @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #ifndef MEMORYOPERATIONS_H #define MEMORYOPERATIONS_H diff --git a/include/StringOperations.cpp b/include/StringOperations.cpp index 055892e..ad92c66 100644 --- a/include/StringOperations.cpp +++ b/include/StringOperations.cpp @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #include "StringOperations.h" diff --git a/include/StringOperations.h b/include/StringOperations.h index 53519fe..9ca60a9 100644 --- a/include/StringOperations.h +++ b/include/StringOperations.h @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #ifndef STRINGOPERATIONS_H #define STRINGOPERATIONS_H diff --git a/include/Templates.h b/include/Templates.h index 00b97d3..6a22545 100644 --- a/include/Templates.h +++ b/include/Templates.h @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #ifndef TEMPLATES_H #define TEMPLATES_H diff --git a/include/TypeConverter.cpp b/include/TypeConverter.cpp index 5ab429d..aa2f797 100644 --- a/include/TypeConverter.cpp +++ b/include/TypeConverter.cpp @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #include "TypeConverter.h" IntConverter::IntConverter() diff --git a/include/TypeConverter.h b/include/TypeConverter.h index 8b426b9..dc26bb8 100644 --- a/include/TypeConverter.h +++ b/include/TypeConverter.h @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #ifndef TYPECONVERTER_H #define TYPECONVERTER_H diff --git a/include/Types.h b/include/Types.h index 9f59063..1187c39 100644 --- a/include/Types.h +++ b/include/Types.h @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #ifndef TYPES_H #define TYPES_H diff --git a/include/containers/CMakeLists.txt b/include/containers/CMakeLists.txt index aab0387..5fb21bd 100644 --- a/include/containers/CMakeLists.txt +++ b/include/containers/CMakeLists.txt @@ -1,3 +1,21 @@ +#[[ + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + ]] + add_library(ContainersHeaders INTERFACE) target_sources(ContainersHeaders diff --git a/include/containers/Tuple.h b/include/containers/Tuple.h index cf870d1..8aabcd0 100644 --- a/include/containers/Tuple.h +++ b/include/containers/Tuple.h @@ -1,3 +1,21 @@ +/** + * Copyright (c) 2026 Alexey Gavrilov + * + * This file is part of ObjectiveOS. + * + * ObjectiveOS is free software: you can redistribute it and/or modify it under + * the terms of the GNU General Public License as published by the Free Software + * Foundation, either version 3 of the License, or (at your option) any later + * version. + * + * ObjectiveOS is distributed in the hope that it will be useful, but WITHOUT ANY + * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + * A PARTICULAR PURPOSE. See the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along with + * ObjectiveOS. If not, see . + */ + #ifndef CONTAINERSTUPLE_H #define CONTAINERSTUPLE_H -- cgit v1.2.3