1 // Copyright (C) 2014-2017 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 #ifndef VSOMEIP_V3_CFG_SERVICE_INSTANCE_RANGE_HPP 7 #define VSOMEIP_V3_CFG_SERVICE_INSTANCE_RANGE_HPP 8 9 #include <vsomeip/primitive_types.hpp> 10 11 namespace vsomeip_v3 { 12 namespace cfg { 13 14 struct service_instance_range { 15 service_t first_service_; 16 service_t last_service_; 17 instance_t first_instance_; 18 instance_t last_instance_; 19 }; 20 21 } // namespace cfg 22 } // namespace vsomeip_v3 23 24 #endif // VSOMEIP_V3_CFG_SERVICE_INSTANCE_RANGE_HPP 25