DBC framework
dbc_database.h
Go to the documentation of this file.
1/**
2 * @file dbc_database.h
3 * @brief
4 *
5 * Created: 2026-03-13
6 * Author: Deeaitch (Dim. Himro)
7 *
8 * Licensed under the MIT License.
9 * See LICENSE file in the project root for full license text.
10 */
11
12#ifndef DBC_DATABASE_H
13#define DBC_DATABASE_H
14
15#include <vector>
16
17#include "frame_info.h"
18
19/**
20 * @brief Parsed DBC content stored in a simple internal form.
21 */
23 std::vector<FrameInfo> frames; /**< All frames found in the DBC file. */
24};
25
26#endif /* DBC_DATABASE_H */
Created: 2026-03-13 Author: Deeaitch (Dim. Himro)
Parsed DBC content stored in a simple internal form.
Definition: dbc_database.h:22
std::vector< FrameInfo > frames
Definition: dbc_database.h:23