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_E2E_PROFILE_INTERFACE_CHECKER_HPP 7 #define VSOMEIP_V3_E2E_PROFILE_INTERFACE_CHECKER_HPP 8 9 #include <mutex> 10 11 #include <vsomeip/primitive_types.hpp> 12 13 #include "../profile_interface/profile_interface.hpp" 14 #include "../../../buffer/buffer.hpp" 15 16 namespace vsomeip_v3 { 17 namespace e2e { 18 namespace profile_interface { 19 20 class checker : public profile_interface { 21 public: 22 virtual void check(const e2e_buffer &_buffer, instance_t _instance, 23 check_status_t &_generic_check_status) = 0; 24 }; 25 26 } // namespace profile_interface 27 } // namespace e2e 28 } // namespace vsomeip_v3 29 30 #endif // VSOMEIP_V3_E2E_PROFILE_INTERFACE_CHECKER_HPP 31