diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-09 02:34:58 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:10:40 +0100 |
commit | 8a7cb7bc50d7e964318c53222d30b939c9866eef (patch) | |
tree | 230cca876619d65e231cf68cff58441207713a8c /src/diagnostic | |
parent | 8a0bbcda01776fb44057f53235fb2821e4863cf7 (diff) |
Fix: missed method declaration
Change-Id: If44be94dfd847089d494088d33f7b6c7f5d9098e
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/diagnostic')
-rw-r--r-- | src/diagnostic/diagnostic-message.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diagnostic/diagnostic-message.hpp b/src/diagnostic/diagnostic-message.hpp index 9dca770..2c6d4ba 100644 --- a/src/diagnostic/diagnostic-message.hpp +++ b/src/diagnostic/diagnostic-message.hpp @@ -80,10 +80,10 @@ class obd2_signal_t { obd2_signal_t(uint8_t pid, const char* generic_name, const int min_, const int max_, enum UNIT unit, int frequency, bool supported); uint32_t get_pid(); + std::string& get_generic_name(); void add_request(int pid); - bool is_obd2_response(can_message_t can_message); bool is_obd2_request(DiagnosticRequest *request); bool is_obd2_signal(const char *name); |