diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-16 15:14:42 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-05-19 11:36:43 +0200 |
commit | 452ab62dae573efc3a2d5a5d97c2f10fca5f502d (patch) | |
tree | f19a21230fb54aa5c0d8e02f03af468afffbb01c /CAN-binder/low-can-binding/utils/config-parser.hpp | |
parent | c4f11994a1540576563819508d4148a0500db4b9 (diff) |
Be able to return index or can bus name.
Use a vector of string pair that map index on vector and pair map logical bus
name with linux device name.
Change-Id: I627e6f715f7466d835d8729e21d9e4198111c1fb
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'CAN-binder/low-can-binding/utils/config-parser.hpp')
-rw-r--r-- | CAN-binder/low-can-binding/utils/config-parser.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CAN-binder/low-can-binding/utils/config-parser.hpp b/CAN-binder/low-can-binding/utils/config-parser.hpp index 28a43419..ce032c9a 100644 --- a/CAN-binder/low-can-binding/utils/config-parser.hpp +++ b/CAN-binder/low-can-binding/utils/config-parser.hpp @@ -19,6 +19,7 @@ #include <string> #include <vector> +#include <utility> #include "ini-config.hpp" namespace utils @@ -36,6 +37,6 @@ namespace utils config_parser_t(std::string conf_file); bool check_conf(); - const std::vector<std::string> get_devices_name(); + const std::vector<std::pair<std::string, std::string> > get_devices_name(); }; } |