/** * @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 #include #include "frame_info.h" /** * @brief Parsed DBC content stored in a simple internal form. */ struct DbcDatabase { std::vector frames; /**< All frames found in the DBC file. */ }; #endif /* DBC_DATABASE_H */