From 1d464d2a7380248b04c3e734ed5c6e84bbf53ddf Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Wed, 15 Mar 2017 13:04:42 +0100 Subject: Revert accessing CAN device with a map indexing on dev name Main reason for that behavior revert is because of generator that rely on CAN device name and so we have point on these object by specify the device name. Instead of shared pointer between objects, instead binding is based on device name. With a device name you can get the shared pointer on it using new static method from can_bus_t object. Change-Id: I331e0ad8d03c88a15c697d12a9fce3699b0cd962 Signed-off-by: Romain Forlot --- src/configuration.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/configuration.hpp') diff --git a/src/configuration.hpp b/src/configuration.hpp index 214b3e7..224672e 100644 --- a/src/configuration.hpp +++ b/src/configuration.hpp @@ -61,7 +61,9 @@ class configuration_t can_bus_t& get_can_bus_manager(); - const std::vector>& get_can_bus_devices(); + const std::map>& get_can_bus_devices(); + + const std::string get_diagnostic_bus() const; diagnostic_manager_t& get_diagnostic_manager() ; -- cgit 1.2.3-korg