blob: d90b957b9a9770ae3755aaeddc21cb3a724fd0ec [file] [log] [blame]
//
// message_element_impl.cpp
//
// Author: Lutz Bichler
//
// This file is part of the BMW Some/IP implementation.
//
// Copyright © 2013, 2014 Bayerische Motoren Werke AG (BMW).
// All rights reserved.
//
#include <vsomeip/service_discovery/impl/message_element_impl.hpp>
namespace vsomeip {
namespace service_discovery {
message_element_impl::message_element_impl() {
owner_ = 0;
}
message_impl * message_element_impl::get_owning_message() const {
return owner_;
}
void message_element_impl::set_owning_message(message_impl *_owner) {
owner_ = _owner;
}
} // namespace service_discovery
} // namespace vsomeip