a9f8cf23f1259b8c54dbe80bf0bd1ba33e086300
[apps/low-level-can-service.git] / low-can-binding / can / can-message-set.cpp
1 /*
2  * Copyright (C) 2015, 2016, 2017 "IoT.bzh"
3  * Author "Romain Forlot" <romain.forlot@iot.bzh>
4  * Author "Loïc Collignon" <loic.collignon@iot.bzh>
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *       http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include "can-message-set.hpp"
20
21 can_message_set_t::can_message_set_t(
22                 uint8_t index,
23                 const std::string& name,
24                 uint8_t can_bus_count,
25                 unsigned short can_message_count,
26                 unsigned short can_signal_count,
27                 unsigned short can_command_count,
28                 unsigned short obd2_signal_count)
29         : index_{index}
30         , name_{name}
31         , can_bus_count_{can_bus_count}
32         , can_message_count_{can_message_count}
33         , can_signal_count_{can_signal_count}
34         , can_command_count_{can_command_count}
35         , obd2_signal_count_{obd2_signal_count}
36 {
37 }