1 // Copyright (C) 2014-2018 Bayerische Motoren Werke Aktiengesellschaft (BMW AG) 2 // This Source Code Form is subject to the terms of the Mozilla Public 3 // License, v. 2.0. If a copy of the MPL was not distributed with this 4 // file, You can obtain one at http://mozilla.org/MPL/2.0/. 5 6 #include <cstdint> 7 8 #ifndef VSOMEIP_V3_SD_PRIMITIVE_TYPES_HPP_ 9 #define VSOMEIP_V3_SD_PRIMITIVE_TYPES_HPP_ 10 11 namespace vsomeip_v3 { 12 namespace sd { 13 14 // Load balancing 15 typedef uint16_t priority_t; 16 typedef uint16_t weight_t; 17 18 // Protection 19 typedef uint32_t alive_counter_t; 20 typedef uint32_t crc_t; 21 22 // 23 typedef uint8_t flags_t; 24 25 } // namespace sd 26 } // namespace vsomeip_v3 27 28 #endif // VSOMEIP_V3_SD_PRIMITIVE_TYPES_HPP_ 29