summaryrefslogtreecommitdiffstats
path: root/src/can/can-message.cpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-03-13 17:46:13 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2017-03-16 17:15:55 +0100
commit7abe7ef5336d88736b20b015ae219731d5f42365 (patch)
tree7822dfb03c4242001827ee4f6f8aa4d98826f489 /src/can/can-message.cpp
parent542518e3f4390fcb0d8fb17bcbb14c7eb4335a61 (diff)
Separation of classes in the same file.
Change-Id: Ifc690cc27028659ffaf5a8a2e9caabc1e0718fd4 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can/can-message.cpp')
-rw-r--r--src/can/can-message.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/can/can-message.cpp b/src/can/can-message.cpp
index 592f5e57..cd4a81e4 100644
--- a/src/can/can-message.cpp
+++ b/src/can/can-message.cpp
@@ -21,11 +21,6 @@
#include "../low-can-binding.hpp"
-/********************************************************************************
-*
-* CanMessage method implementation
-*
-*********************************************************************************/
/**
* @brief Class constructor
*
@@ -252,18 +247,3 @@ canfd_frame can_message_t::convert_to_canfd_frame()
return frame;
}
-
-/********************************************************************************
-*
-* can_message_definition_t method implementation
-*
-*********************************************************************************/
-
-can_message_definition_t::can_message_definition_t(can_bus_dev_t& cbd)
- : bus_{cbd}, last_value_(CAN_MESSAGE_SIZE)
-{}
-
-uint32_t can_message_definition_t::get_id() const
-{
- return id_;
-}