DBC parser initial commit.

This commit is contained in:
2026-03-13 13:00:01 -04:00
parent 4270459973
commit 2a90b2d79d
11 changed files with 789 additions and 0 deletions

15
dbc_database.h Normal file
View File

@@ -0,0 +1,15 @@
#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 DBC file. */
};
#endif /* DBC_DATABASE_H */