You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
408 B
26 lines
408 B
#include <string>
|
|
#include <vector>
|
|
|
|
#include "common.h"
|
|
|
|
namespace {
|
|
|
|
std::vector<const DBC*>& get_dbcs() {
|
|
static std::vector<const DBC*> vec;
|
|
return vec;
|
|
}
|
|
|
|
}
|
|
|
|
const DBC* dbc_lookup(const std::string& dbc_name) {
|
|
for (const auto& dbci : get_dbcs()) {
|
|
if (dbc_name == dbci->name) {
|
|
return dbci;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
void dbc_register(const DBC* dbc) {
|
|
get_dbcs().push_back(dbc);
|
|
}
|
|
|