27 lines
493 B
C++
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 */
|