16 lines
290 B
C++
16 lines
290 B
C++
#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 */
|