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 #include "../include/message_element_impl.hpp" 7 8 namespace vsomeip_v3 { 9 namespace sd { 10 message_element_impl()11message_element_impl::message_element_impl() { 12 owner_ = 0; 13 } 14 get_owning_message() const15message_impl * message_element_impl::get_owning_message() const { 16 return owner_; 17 } 18 set_owning_message(message_impl * _owner)19void message_element_impl::set_owning_message(message_impl *_owner) { 20 owner_ = _owner; 21 } 22 23 } // namespace sd 24 } // namespace vsomeip_v3 25