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

18
dbc.pro Normal file
View File

@@ -0,0 +1,18 @@
TEMPLATE = app
CONFIG += console c++17
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += \
dbc_parser.cpp \
dbc_tree_builder.cpp \
main.cpp \
tree_node.cpp
HEADERS += \
dbc_database.h \
dbc_parser.h \
dbc_tree_builder.h \
frame_info.h \
signal_info.h \
tree_node.h