From e2ffa97001d295cc5eaf260c857dbe4d52487236 Mon Sep 17 00:00:00 2001 From: deeaitch Date: Sun, 14 Jun 2026 20:02:35 -0400 Subject: [PATCH] Header was added. --- dbc_database.h | 11 +++++++++++ dbc_decode_builder.cpp | 11 +++++++++++ dbc_decode_builder.h | 11 +++++++++++ dbc_decoder.cpp | 11 +++++++++++ dbc_decoder.h | 11 +++++++++++ dbc_parser.cpp | 11 +++++++++++ dbc_parser.h | 11 +++++++++++ dbc_tree_builder.cpp | 11 +++++++++++ dbc_tree_builder.h | 11 +++++++++++ decode_database.h | 11 +++++++++++ frame_info.h | 11 +++++++++++ main.cpp | 11 +++++++++++ signal_info.h | 11 +++++++++++ tree_node.cpp | 11 +++++++++++ tree_node.h | 11 +++++++++++ 15 files changed, 165 insertions(+) diff --git a/dbc_database.h b/dbc_database.h index bfdac0e..43342a3 100644 --- a/dbc_database.h +++ b/dbc_database.h @@ -1,3 +1,14 @@ +/** + * @file dbc_database.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef DBC_DATABASE_H #define DBC_DATABASE_H diff --git a/dbc_decode_builder.cpp b/dbc_decode_builder.cpp index 18df709..85b8c38 100644 --- a/dbc_decode_builder.cpp +++ b/dbc_decode_builder.cpp @@ -1,3 +1,14 @@ +/** + * @file dbc_decode_builder.cpp + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #include "dbc_decode_builder.h" DecodeDatabase DbcDecodeBuilder::Build (const DbcDatabase &source) const { diff --git a/dbc_decode_builder.h b/dbc_decode_builder.h index ad65ca4..5fa1fa3 100644 --- a/dbc_decode_builder.h +++ b/dbc_decode_builder.h @@ -1,3 +1,14 @@ +/** + * @file dbc_decode_builder.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef DBC_DECODE_BUILDER_H #define DBC_DECODE_BUILDER_H diff --git a/dbc_decoder.cpp b/dbc_decoder.cpp index 0d564b4..42297bc 100644 --- a/dbc_decoder.cpp +++ b/dbc_decoder.cpp @@ -1,3 +1,14 @@ +/** + * @file dbc_decoder.cpp + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #include "dbc_decoder.h" const DecodeFrame *DbcDecoder::FindFrame (const DecodeDatabase &database, diff --git a/dbc_decoder.h b/dbc_decoder.h index 6c14d71..2629a3c 100644 --- a/dbc_decoder.h +++ b/dbc_decoder.h @@ -1,3 +1,14 @@ +/** + * @file dbc_decoder.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef DBC_DECODER_H #define DBC_DECODER_H diff --git a/dbc_parser.cpp b/dbc_parser.cpp index 8ba4246..6519ff8 100644 --- a/dbc_parser.cpp +++ b/dbc_parser.cpp @@ -1,3 +1,14 @@ +/** + * @file dbc_parser.cpp + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #include "dbc_parser.h" #include diff --git a/dbc_parser.h b/dbc_parser.h index d0586a5..4d621aa 100644 --- a/dbc_parser.h +++ b/dbc_parser.h @@ -1,3 +1,14 @@ +/** + * @file dbc_parser.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef DBC_PARSER_H #define DBC_PARSER_H diff --git a/dbc_tree_builder.cpp b/dbc_tree_builder.cpp index c4e5528..122104c 100644 --- a/dbc_tree_builder.cpp +++ b/dbc_tree_builder.cpp @@ -1,3 +1,14 @@ +/** + * @file dbc_tree_builder.cpp + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #include "dbc_tree_builder.h" std::unique_ptr DbcTreeBuilder::Build (const DbcDatabase &database) const { diff --git a/dbc_tree_builder.h b/dbc_tree_builder.h index 931c181..422c94e 100644 --- a/dbc_tree_builder.h +++ b/dbc_tree_builder.h @@ -1,3 +1,14 @@ +/** + * @file dbc_tree_builder.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef DBC_TREE_BUILDER_H #define DBC_TREE_BUILDER_H diff --git a/decode_database.h b/decode_database.h index 07b3c35..df46be5 100644 --- a/decode_database.h +++ b/decode_database.h @@ -1,3 +1,14 @@ +/** + * @file decode_database.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef DECODE_DATABASE_H #define DECODE_DATABASE_H diff --git a/frame_info.h b/frame_info.h index 42153f1..3463837 100644 --- a/frame_info.h +++ b/frame_info.h @@ -1,3 +1,14 @@ +/** + * @file frame_info.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef FRAME_INFO_H #define FRAME_INFO_H diff --git a/main.cpp b/main.cpp index 0d0a8cc..aa70188 100644 --- a/main.cpp +++ b/main.cpp @@ -1,3 +1,14 @@ +/** + * @file main.cpp + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #include #include #include diff --git a/signal_info.h b/signal_info.h index 0b99db3..67a6338 100644 --- a/signal_info.h +++ b/signal_info.h @@ -1,3 +1,14 @@ +/** + * @file signal_info.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef SIGNAL_INFO_H #define SIGNAL_INFO_H diff --git a/tree_node.cpp b/tree_node.cpp index d438243..4bb3b48 100644 --- a/tree_node.cpp +++ b/tree_node.cpp @@ -1,3 +1,14 @@ +/** + * @file tree_node.cpp + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #include "tree_node.h" TreeNode::TreeNode() diff --git a/tree_node.h b/tree_node.h index 3015db4..404a1c8 100644 --- a/tree_node.h +++ b/tree_node.h @@ -1,3 +1,14 @@ +/** + * @file tree_node.h + * @brief + * + * Created: 2026-03-13 + * Author: Deeaitch (Dim. Himro) + * + * Licensed under the MIT License. + * See LICENSE file in the project root for full license text. + */ + #ifndef TREE_NODE_H #define TREE_NODE_H