DBC parser initial commit.
This commit is contained in:
15
dbc_database.h
Normal file
15
dbc_database.h
Normal 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 */
|
||||
Reference in New Issue
Block a user