From e190b7b3069d86fce25831c366bb0cd3fa615289 Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Mon, 10 Dec 2018 18:08:47 +0100 Subject: Simpler handling of binding subscriptions Don't use a child class for subscription, only use one because there isn't other different subscriptions type to be implemented about now and if so then we could split again. Remove functions no longer useful and move afb events and afb subscriptions part to low-can-subscription Change-Id: Ie3e4255961ac557465098cdb48730098a950461a Signed-off-by: Romain Forlot --- low-can-binding/binding/application.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'low-can-binding/binding/application.hpp') diff --git a/low-can-binding/binding/application.hpp b/low-can-binding/binding/application.hpp index 92aca382..e017685b 100644 --- a/low-can-binding/binding/application.hpp +++ b/low-can-binding/binding/application.hpp @@ -47,7 +47,7 @@ class application_t std::vector > can_message_set_; ///< Vector holding all message set from JSON signals description file - std::map > can_devices_; ///< Map containing all independant opened CAN sockets, key is the socket int value. + std::map > can_devices_; ///< Map containing all independant opened CAN sockets, key is the socket int value. application_t(); ///< Private constructor with implementation generated by the AGL generator. @@ -56,7 +56,7 @@ class application_t can_bus_t& get_can_bus_manager(); - std::map >& get_can_devices(); + std::map >& get_can_devices(); const std::string get_diagnostic_bus() const; -- cgit 1.2.3-korg