summaryrefslogtreecommitdiffstats
path: root/CAN-binder/low-can-binding/utils/config-parser.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CAN-binder/low-can-binding/utils/config-parser.hpp')
-rw-r--r--CAN-binder/low-can-binding/utils/config-parser.hpp3
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();
};
}