summaryrefslogtreecommitdiffstats
path: root/CAN-binder/low-can-binding/utils/config-parser.hpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-05-18 19:49:43 +0200
committerRomain Forlot <romain.forlot@iot.bzh>2017-05-19 14:48:23 +0200
commit465001c7ef7479e7cfb7af7af180ed6419a5ab49 (patch)
treec0a842d5b9ab9c0c75972bc12b2903de5f46e311 /CAN-binder/low-can-binding/utils/config-parser.hpp
parentdd00a5553e42adb8a14470602e4f25c449287f7d (diff)
Finish config parser retrieving device mapping.
Change-Id: Ia43f9c0edf09ff9a1c009f198bdad10a6b44b249 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.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/CAN-binder/low-can-binding/utils/config-parser.hpp b/CAN-binder/low-can-binding/utils/config-parser.hpp
index ce032c9a..04531108 100644
--- a/CAN-binder/low-can-binding/utils/config-parser.hpp
+++ b/CAN-binder/low-can-binding/utils/config-parser.hpp
@@ -29,6 +29,7 @@ namespace utils
class config_parser_t
{
private:
+ const std::string filepath_; /*!< filepath_ - Path to the config file*/
ini_config config_content_; /*!< config_content_ - Parsed content of INI file.*/
public:
@@ -36,6 +37,7 @@ namespace utils
config_parser_t(const config_parser_t&) = default;
config_parser_t(std::string conf_file);
+ const std::string& filepath() const;
bool check_conf();
const std::vector<std::pair<std::string, std::string> > get_devices_name();
};