diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-05-23 13:56:22 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-05-23 13:56:22 +1000 |
| commit | a4f94c812a4da7254d31af4061a8f234a1e0e23d (patch) | |
| tree | e8f629a45251dd486ae57f78279243e1f1728d44 /src/database | |
| parent | d71f726c42963d55809605b4dc4144970ca0f230 (diff) | |
| download | tangara-fw-a4f94c812a4da7254d31af4061a8f234a1e0e23d.tar.gz | |
Annote E V E R Y T H I N G with license info
Diffstat (limited to 'src/database')
| -rw-r--r-- | src/database/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/database/database.cpp | 6 | ||||
| -rw-r--r-- | src/database/db_task.cpp | 6 | ||||
| -rw-r--r-- | src/database/env_esp.cpp | 6 | ||||
| -rw-r--r-- | src/database/file_gatherer.cpp | 6 | ||||
| -rw-r--r-- | src/database/include/database.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/db_task.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/env_esp.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/file_gatherer.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/records.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/song.hpp | 6 | ||||
| -rw-r--r-- | src/database/include/tag_parser.hpp | 6 | ||||
| -rw-r--r-- | src/database/records.cpp | 6 | ||||
| -rw-r--r-- | src/database/song.cpp | 6 | ||||
| -rw-r--r-- | src/database/tag_parser.cpp | 6 | ||||
| -rw-r--r-- | src/database/test/CMakeLists.txt | 4 | ||||
| -rw-r--r-- | src/database/test/test_database.cpp | 6 | ||||
| -rw-r--r-- | src/database/test/test_records.cpp | 6 |
18 files changed, 104 insertions, 0 deletions
diff --git a/src/database/CMakeLists.txt b/src/database/CMakeLists.txt index 897bf029..d16e1ecb 100644 --- a/src/database/CMakeLists.txt +++ b/src/database/CMakeLists.txt @@ -1,3 +1,7 @@ +# Copyright 2023 jacqueline <me@jacqueline.id.au> +# +# SPDX-License-Identifier: GPL-3.0-only + idf_component_register( SRCS "env_esp.cpp" "database.cpp" "song.cpp" "db_task.cpp" "records.cpp" "file_gatherer.cpp" "tag_parser.cpp" INCLUDE_DIRS "include" diff --git a/src/database/database.cpp b/src/database/database.cpp index f5fe5240..5c2cf0ed 100644 --- a/src/database/database.cpp +++ b/src/database/database.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "database.hpp" #include <stdint.h> diff --git a/src/database/db_task.cpp b/src/database/db_task.cpp index 5b4b34b5..07ab7cff 100644 --- a/src/database/db_task.cpp +++ b/src/database/db_task.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "db_task.hpp" #include <functional> diff --git a/src/database/env_esp.cpp b/src/database/env_esp.cpp index 71d4fcea..0ca4d228 100644 --- a/src/database/env_esp.cpp +++ b/src/database/env_esp.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "env_esp.hpp" #include <atomic> diff --git a/src/database/file_gatherer.cpp b/src/database/file_gatherer.cpp index e3b89285..2d17a925 100644 --- a/src/database/file_gatherer.cpp +++ b/src/database/file_gatherer.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "file_gatherer.hpp" #include <deque> diff --git a/src/database/include/database.hpp b/src/database/include/database.hpp index da0ed083..3ad578f0 100644 --- a/src/database/include/database.hpp +++ b/src/database/include/database.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <stdint.h> diff --git a/src/database/include/db_task.hpp b/src/database/include/db_task.hpp index 39f932b0..afa3385f 100644 --- a/src/database/include/db_task.hpp +++ b/src/database/include/db_task.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <functional> diff --git a/src/database/include/env_esp.hpp b/src/database/include/env_esp.hpp index cf5a20e1..9568f417 100644 --- a/src/database/include/env_esp.hpp +++ b/src/database/include/env_esp.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <mutex> diff --git a/src/database/include/file_gatherer.hpp b/src/database/include/file_gatherer.hpp index bba4d0df..ff0a6ac2 100644 --- a/src/database/include/file_gatherer.hpp +++ b/src/database/include/file_gatherer.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <deque> diff --git a/src/database/include/records.hpp b/src/database/include/records.hpp index 371d8d58..1b66ad42 100644 --- a/src/database/include/records.hpp +++ b/src/database/include/records.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <stdint.h> diff --git a/src/database/include/song.hpp b/src/database/include/song.hpp index 9a84e124..2791c0ca 100644 --- a/src/database/include/song.hpp +++ b/src/database/include/song.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <stdint.h> diff --git a/src/database/include/tag_parser.hpp b/src/database/include/tag_parser.hpp index 1aee94c7..7dab93a1 100644 --- a/src/database/include/tag_parser.hpp +++ b/src/database/include/tag_parser.hpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #pragma once #include <string> diff --git a/src/database/records.cpp b/src/database/records.cpp index 572850d2..f04e5da7 100644 --- a/src/database/records.cpp +++ b/src/database/records.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "records.hpp" #include <stdint.h> diff --git a/src/database/song.cpp b/src/database/song.cpp index b6a1baac..c717e55e 100644 --- a/src/database/song.cpp +++ b/src/database/song.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "song.hpp" #include <komihash.h> diff --git a/src/database/tag_parser.cpp b/src/database/tag_parser.cpp index 90866ff3..d6109671 100644 --- a/src/database/tag_parser.cpp +++ b/src/database/tag_parser.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "tag_parser.hpp" #include <esp_log.h> diff --git a/src/database/test/CMakeLists.txt b/src/database/test/CMakeLists.txt index b5532da1..a9f2cedb 100644 --- a/src/database/test/CMakeLists.txt +++ b/src/database/test/CMakeLists.txt @@ -1,3 +1,7 @@ +# Copyright 2023 jacqueline <me@jacqueline.id.au> +# +# SPDX-License-Identifier: GPL-3.0-only + idf_component_register( SRCS "test_records.cpp" "test_database.cpp" INCLUDE_DIRS "." diff --git a/src/database/test/test_database.cpp b/src/database/test/test_database.cpp index a88c4bb3..ebaa6307 100644 --- a/src/database/test/test_database.cpp +++ b/src/database/test/test_database.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "database.hpp" #include <stdint.h> diff --git a/src/database/test/test_records.cpp b/src/database/test/test_records.cpp index d84d2b6a..ca518458 100644 --- a/src/database/test/test_records.cpp +++ b/src/database/test/test_records.cpp @@ -1,3 +1,9 @@ +/* + * Copyright 2023 jacqueline <me@jacqueline.id.au> + * + * SPDX-License-Identifier: GPL-3.0-only + */ + #include "records.hpp" #include <stdint.h> |
