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_PROFILE_INTERFACE_HPP 7 #define VSOMEIP_V3_E2E_PROFILE_INTERFACE_PROFILE_INTERFACE_HPP 8 9 #include <cstdint> 10 11 namespace vsomeip_v3 { 12 namespace e2e { 13 namespace profile_interface { 14 15 typedef uint8_t check_status_t; 16 enum generic_check_status : check_status_t { E2E_OK, E2E_WRONG_CRC, E2E_ERROR}; 17 18 19 class profile_interface { 20 public: ~profile_interface()21 virtual ~profile_interface() {} 22 }; 23 24 } // namespace profile_interface 25 } // namespace e2e 26 } // namespace vsomeip_v3 27 28 #endif // VSOMEIP_V3_E2E_PROFILE_INTERFACE_PROFILE_INTERFACE_HPP 29