• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 <vsomeip/runtime.hpp>
7 #include <vsomeip/plugin.hpp>
8 
9 #include "../include/runtime_impl.hpp"
10 #include "../../endpoints/include/endpoint.hpp"
11 #include "../../endpoints/include/client_endpoint.hpp"
12 #include "../../configuration/include/configuration_plugin.hpp"
13 
14 namespace vsomeip_v3 {
15 
get_property(const std::string & _name)16 std::string runtime::get_property(const std::string &_name) {
17     return runtime_impl::get_property(_name);
18 }
19 
set_property(const std::string & _name,const std::string & _value)20 void runtime::set_property(const std::string &_name, const std::string &_value) {
21     runtime_impl::set_property(_name, _value);
22 }
23 
get()24 std::shared_ptr<runtime> runtime::get() {
25     return runtime_impl::get();
26 }
27 
28 // non-inline destructors to make typeinfo of the type visible outside the shared library boundary
29 #ifdef ANDROID
~plugin()30 plugin::~plugin() {
31 }
32 
~endpoint()33 endpoint::~endpoint() {
34 }
35 
~client_endpoint()36 client_endpoint::~client_endpoint() {
37 }
38 
~configuration_plugin()39 configuration_plugin::~configuration_plugin() {
40 }
41 #endif
42 
43 } // namespace vsomeip_v3
44