diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-10 16:08:06 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-03-16 17:10:41 +0100 |
commit | 065a5bdef8c37f8b0466f63e48443dab31e86431 (patch) | |
tree | 47b554a3fe13ed99fcd87f298e01b2607f0f6601 /src/can/can-signals.hpp | |
parent | 093d7a35c23c65ffef888ded40aea9e77f0e4975 (diff) |
We doesn't modify member once getted, we can use const return
and const method.
Change-Id: I0f7465af74b1c9a546af45a0d1eea33c93537e0c
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can/can-signals.hpp')
-rw-r--r-- | src/can/can-signals.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/can/can-signals.hpp b/src/can/can-signals.hpp index 10403da4..c1d07eee 100644 --- a/src/can/can-signals.hpp +++ b/src/can/can-signals.hpp @@ -110,8 +110,9 @@ private: public: can_message_definition_t& get_message(); - std::string& get_generic_name(); - std::string get_name(); + const std::string& get_generic_name() const; + const std::string get_name() const; + const std::string& get_prefix() const; uint8_t get_bit_position() const; uint8_t get_bit_size() const; float get_factor() const; |