Header was added.

This commit is contained in:
2026-06-14 20:02:35 -04:00
parent f0e706542b
commit e2ffa97001
15 changed files with 165 additions and 0 deletions

View File

@@ -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 #ifndef DBC_DATABASE_H
#define DBC_DATABASE_H #define DBC_DATABASE_H

View File

@@ -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" #include "dbc_decode_builder.h"
DecodeDatabase DbcDecodeBuilder::Build (const DbcDatabase &source) const { DecodeDatabase DbcDecodeBuilder::Build (const DbcDatabase &source) const {

View File

@@ -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 #ifndef DBC_DECODE_BUILDER_H
#define DBC_DECODE_BUILDER_H #define DBC_DECODE_BUILDER_H

View File

@@ -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" #include "dbc_decoder.h"
const DecodeFrame *DbcDecoder::FindFrame (const DecodeDatabase &database, const DecodeFrame *DbcDecoder::FindFrame (const DecodeDatabase &database,

View File

@@ -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 #ifndef DBC_DECODER_H
#define DBC_DECODER_H #define DBC_DECODER_H

View File

@@ -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 "dbc_parser.h"
#include <fstream> #include <fstream>

View File

@@ -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 #ifndef DBC_PARSER_H
#define DBC_PARSER_H #define DBC_PARSER_H

View File

@@ -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" #include "dbc_tree_builder.h"
std::unique_ptr<TreeNode> DbcTreeBuilder::Build (const DbcDatabase &database) const { std::unique_ptr<TreeNode> DbcTreeBuilder::Build (const DbcDatabase &database) const {

View File

@@ -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 #ifndef DBC_TREE_BUILDER_H
#define DBC_TREE_BUILDER_H #define DBC_TREE_BUILDER_H

View File

@@ -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 #ifndef DECODE_DATABASE_H
#define DECODE_DATABASE_H #define DECODE_DATABASE_H

View File

@@ -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 #ifndef FRAME_INFO_H
#define FRAME_INFO_H #define FRAME_INFO_H

View File

@@ -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 <iostream> #include <iostream>
#include <iomanip> #include <iomanip>
#include <memory> #include <memory>

View File

@@ -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 #ifndef SIGNAL_INFO_H
#define SIGNAL_INFO_H #define SIGNAL_INFO_H

View File

@@ -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" #include "tree_node.h"
TreeNode::TreeNode() TreeNode::TreeNode()

View File

@@ -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 #ifndef TREE_NODE_H
#define TREE_NODE_H #define TREE_NODE_H