From 22d0b16875926bdb0a39aa44de2bdde57825127c Mon Sep 17 00:00:00 2001 From: Romain Forlot Date: Fri, 12 May 2017 14:42:47 +0200 Subject: Remove unused and useless members. These members was imported from OpenXC project which was in C so they need to know array size. As we use vector we doesn't need them anymore. We can retrieve count using size() vector method Change-Id: Iefd0266d400097ab2dae813aca196c8e3b9bc368 Signed-off-by: Romain Forlot --- CAN-binder/low-can-binding/can/can-message-set.hpp | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'CAN-binder/low-can-binding/can/can-message-set.hpp') diff --git a/CAN-binder/low-can-binding/can/can-message-set.hpp b/CAN-binder/low-can-binding/can/can-message-set.hpp index 3d917c11..9555d005 100644 --- a/CAN-binder/low-can-binding/can/can-message-set.hpp +++ b/CAN-binder/low-can-binding/can/can-message-set.hpp @@ -34,22 +34,12 @@ class can_message_set_t private: uint8_t index_; /// < A numerical ID for the message set, ideally the index in an array for fast lookup const std::string name_; /// < The name of the message set. - uint8_t can_bus_count_; /// < The number of CAN buses defined for this message set. - uint16_t can_message_count_; /// < The number of CAN messages (across all buses) defined for this message set. - uint16_t can_signal_count_; /// < The number of CAN signals (across all messages) defined for this message set. - uint16_t can_command_count_; /// < The number of CanCommmands defined for this message set. - uint16_t obd2_signal_count_; /// < The number of obd2 signals defined for this message set. std::vector > can_messages_definition_; ///< Vector holding all message definition handled by this message set. public: can_message_set_t( uint8_t index, const std::string& name, - uint8_t can_bus_count, - short unsigned int can_message_count, - short unsigned int can_signal_count, - short unsigned int can_command_count, - short unsigned int obd2_signal_count, std::vector > can_messages_definition); std::vector > get_can_message_definition(); -- cgit 1.2.3-korg