summaryrefslogtreecommitdiffstats
path: root/CAN-binder/low-can-binding/can/can-message-set.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'CAN-binder/low-can-binding/can/can-message-set.hpp')
-rw-r--r--CAN-binder/low-can-binding/can/can-message-set.hpp12
1 files changed, 6 insertions, 6 deletions
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 1cc5042..ca01abc 100644
--- a/CAN-binder/low-can-binding/can/can-message-set.hpp
+++ b/CAN-binder/low-can-binding/can/can-message-set.hpp
@@ -40,11 +40,11 @@ private:
public:
can_message_set_t(
uint8_t index,
- const std::string& name,
- std::vector<std::shared_ptr<can_message_definition_t> > can_messages_definition,
- std::vector<std::shared_ptr<diagnostic_message_t> > diagnostic_messages);
+ const std::string name,
+ const std::vector<std::shared_ptr<can_message_definition_t> >& can_messages_definition,
+ const std::vector<std::shared_ptr<diagnostic_message_t> >& diagnostic_messages);
- std::vector<std::shared_ptr<can_message_definition_t> > get_can_message_definition();
- std::vector<std::shared_ptr<can_signal_t> > get_can_signals() const;
- std::vector<std::shared_ptr<diagnostic_message_t> > get_diagnostic_messages();
+ std::vector<std::shared_ptr<can_message_definition_t> >& get_can_message_definition();
+ std::vector<std::shared_ptr<can_signal_t> > get_all_can_signals() const;
+ std::vector<std::shared_ptr<diagnostic_message_t> >& get_diagnostic_messages();
};