Files
dbc/dbc_database.h
2026-06-14 20:02:35 -04:00

27 lines
493 B
C++

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