mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 14:16:39 +08:00
2c0cc6103a
old-commit-hash: daf54ad54d
27 lines
408 B
C++
27 lines
408 B
C++
#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);
|
|
}
|