diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-06 22:39:31 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:05:17 +0100 |
commit | a1a0b7b176f6c34c0e644335ff70be3f7421494b (patch) | |
tree | 7735cf4de3d4ed8b9df757064c73860fa052fdee /src/diagnostic | |
parent | de8fb10e1d8e98a85dfba6fc8966266dbf5e42c6 (diff) |
Finalize new directories organization.
Change include statements and CMakeLists.txt accordingly
to the new layout.
Change-Id: Ief0821f7f6636b072cf26c7d8d8fcc16fe43ab01
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/diagnostic')
-rw-r--r-- | src/diagnostic/diagnostic-message.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/diagnostic/diagnostic-message.hpp b/src/diagnostic/diagnostic-message.hpp index a8f21e0..1ee9d96 100644 --- a/src/diagnostic/diagnostic-message.hpp +++ b/src/diagnostic/diagnostic-message.hpp @@ -20,8 +20,8 @@ #include <vector> #include "uds/uds.h" -#include "can-bus.hpp" -#include "can-message.hpp" +#include "can/can-bus.hpp" +#include "can/can-message.hpp" #include "low-can-binding.hpp" @@ -78,7 +78,7 @@ class obd2_signals_t { public: obd2_signals_t(uint8_t pid, const char* generic_name, const int min_, const int max_, enum UNIT unit, int frequency, bool supported); - void init_diagnostic_shims(can_bus_dev_t& can_bus_dev) + void init_diagnostic_shims(can_bus_dev_t& can_bus_dev); void add_request(int pid); std::vector<Obd2Pid>& get_obd2_signals(); |