From b606db2b74d5c92d33a126071062c9eb2a548beb Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Mon, 13 Mar 2017 09:45:01 +0100 Subject: Change the way to check signal type making prefix_ attribute as static with a static class method which will check that the beginning of string argument matches the prefix. Change-Id: Idb129c7179391da61447996560957b2791aa9383 Signed-off-by: Romain Forlot --- src/can/can-signals.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/can/can-signals.hpp') diff --git a/src/can/can-signals.hpp b/src/can/can-signals.hpp index c1d07ee..7708461 100644 --- a/src/can/can-signals.hpp +++ b/src/can/can-signals.hpp @@ -77,7 +77,7 @@ class can_signal_t private: can_message_definition_t message_; /*!< message_ - The message this signal is a part of. */ std::string generic_name_; /*!< generic_name_ - The name of the signal to be output.*/ - std::string prefix_ = "messages."; /*!< prefix_ - generic_name_ will be prefixed with it. It has to reflect the used protocol. + static std::string prefix_; /*!< prefix_ - generic_name_ will be prefixed with it. It has to reflect the used protocol. * which make easier to sort message when the come in.*/ uint8_t bit_position_; /*!< bitPosition_ - The starting bit of the signal in its CAN message (assuming * non-inverted bit numbering, i.e. the most significant bit of -- cgit 1.2.3-korg