From: Romain Forlot Date: Fri, 2 Jun 2017 00:02:55 +0000 (+0200) Subject: Adding accessor to diagnostic msg shared ptr. X-Git-Tag: Renesas_delivery_Q2~39 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=1cbfa7de22eb4610980f0f2b38b2d1ae8ffad9f2;p=apps%2Flow-level-can-service.git Adding accessor to diagnostic msg shared ptr. Change-Id: I9d32239b3ebd762ab3a337fc734d504ee8dc8c5f Signed-off-by: Romain Forlot --- diff --git a/CAN-binder/low-can-binding/binding/low-can-cb.cpp b/CAN-binder/low-can-binding/binding/low-can-cb.cpp index edda209..917fb53 100644 --- a/CAN-binder/low-can-binding/binding/low-can-cb.cpp +++ b/CAN-binder/low-can-binding/binding/low-can-cb.cpp @@ -97,6 +97,11 @@ const std::shared_ptr low_can_subscription_t::get_can_signal() con return can_signal_; } +const std::shared_ptr low_can_subscription_t::get_diagnostic_message() const +{ + return diagnostic_message_; +} + const std::string low_can_subscription_t::get_name() const { if (can_signal_ != nullptr) diff --git a/CAN-binder/low-can-binding/binding/low-can-cb.hpp b/CAN-binder/low-can-binding/binding/low-can-cb.hpp index ad3f74f..3975c67 100644 --- a/CAN-binder/low-can-binding/binding/low-can-cb.hpp +++ b/CAN-binder/low-can-binding/binding/low-can-cb.hpp @@ -60,6 +60,7 @@ public: int get_index() const; struct afb_event& get_event(); const std::shared_ptr get_can_signal() const; + const std::shared_ptr get_diagnostic_message() const; const std::string get_name() const; float get_frequency() const; float get_min() const;