1 // Copyright (C) 2019 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 <compat/vsomeip/runtime.hpp> 7 #include "../include/runtime_impl.hpp" 8 9 namespace vsomeip { 10 11 std::string get_property(const std::string & _name)12runtime::get_property(const std::string &_name) { 13 14 return runtime_impl::get_property(_name); 15 } 16 17 void set_property(const std::string & _name,const std::string & _value)18runtime::set_property(const std::string &_name, const std::string &_value) { 19 20 runtime_impl::set_property(_name, _value); 21 } 22 23 std::shared_ptr<runtime> get()24runtime::get() { 25 26 return runtime_impl::get(); 27 } 28 29 } // namespace vsomeip 30